10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import CustomerTicketFlow from "@/components/CustomerTicketFlow";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-full flex-1 flex-col bg-zinc-50">
|
|
<CustomerTicketFlow />
|
|
</div>
|
|
);
|
|
}
|