* Start by moving what we have to _templates * WIP * WIP * Add create/edit/delete template commands * Type fixes cli Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
import React from "react";
|
|
|
|
import { AppForm } from "../components/AppCreateUpdateForm";
|
|
|
|
export default function Edit(props: Omit<React.ComponentProps<typeof AppForm>, "action">) {
|
|
return <AppForm action="edit" {...props} />;
|
|
}
|