* 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
205 B
TypeScript
8 lines
205 B
TypeScript
import React from "react";
|
|
|
|
import DeleteForm from "../components/DeleteForm";
|
|
|
|
export default function Delete({ slug }: { slug: string }) {
|
|
return <DeleteForm slug={slug} action="delete-template" />;
|
|
}
|