Files
mycode/jsonhero-web/app/components/NewDocument.tsx
2026-02-04 12:18:35 +08:00

21 lines
618 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { DragAndDropForm } from "./DragAndDropForm";
import { Title } from "./Primitives/Title";
import { SampleUrls } from "./SampleUrls";
import { UrlForm } from "./UrlForm";
export function NewDocument() {
return (
<div className="bg-indigo-700 text-white rounded-sm shadow-md w-96 max-w-max p-3 transition">
<div className="flex flex-col">
<UrlForm className="mb-2" />
<DragAndDropForm />
<div className="mt-4">
<Title className="mb-2 text-slate-200"> JSON</Title>
<SampleUrls />
</div>
</div>
</div>
);
}