mirror of
https://github.com/Hackdex-App/hackdex-website.git
synced 2026-05-07 13:41:18 -05:00
30 lines
687 B
TypeScript
30 lines
687 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import HackSubmitForm from "@/components/Hack/HackSubmitForm";
|
|
import HackEditForm from "@/components/Hack/HackEditForm";
|
|
|
|
type Mode = "create" | "edit";
|
|
|
|
interface HackFormCreateProps {
|
|
mode: "create";
|
|
dummy?: boolean;
|
|
}
|
|
|
|
interface HackFormEditProps {
|
|
mode: "edit";
|
|
slug: string;
|
|
initial: React.ComponentProps<typeof HackEditForm>["initial"];
|
|
}
|
|
|
|
export type HackFormProps = HackFormCreateProps | HackFormEditProps;
|
|
|
|
export default function HackForm(props: HackFormProps) {
|
|
if (props.mode === "create") {
|
|
return <HackSubmitForm dummy={props.dummy} />;
|
|
}
|
|
return <HackEditForm slug={props.slug} initial={props.initial} />;
|
|
}
|
|
|
|
|