Create component

Anonymous
typescript
09/19/2023 8:17 AM
560 B
18
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...