()
| 4 | import { UrlForm } from "./UrlForm"; |
| 5 | |
| 6 | export function NewDocument() { |
| 7 | return ( |
| 8 | <div className="bg-indigo-700 text-white rounded-sm shadow-md w-96 max-w-max p-3 transition"> |
| 9 | <div className="flex flex-col"> |
| 10 | <UrlForm className="mb-2" /> |
| 11 | <DragAndDropForm /> |
| 12 | |
| 13 | <div className="mt-4"> |
| 14 | <Title className="mb-2 text-slate-200">No JSON? Try it out:</Title> |
| 15 | <SampleUrls /> |
| 16 | </div> |
| 17 | </div> |
| 18 | </div> |
| 19 | ); |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected