Create component

mail@pastecode.io avatar
unknown
typescript
a year ago
418 B
2
Indexable
Never
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;