Create component
unknown
typescript
2 years ago
418 B
9
Indexable
import type { Metadata } from "next";
import CreateForm from "./client/createForm";
import Link from "next/link";
export const metadata: Metadata = {
title: "Create Blog",
description: "Create new blog",
};
function Create() {
return (
<>
<Link className="text-blue-700 underline" href="/admin"> Back to Dashboard</Link>
<CreateForm />
</>
);
}
export default Create;
Editor is loading...