()
| 4 | import { UrlForm } from "./UrlForm"; |
| 5 | |
| 6 | export function NewFile() { |
| 7 | return ( |
| 8 | <div> |
| 9 | <div className="mb-4"> |
| 10 | <UrlForm /> |
| 11 | </div> |
| 12 | <DragAndDropForm /> |
| 13 | |
| 14 | <div className="mt-4 pt-5"> |
| 15 | <Title className="mb-2 text-slate-200">No JSON? Try it out:</Title> |
| 16 | <SampleUrls /> |
| 17 | </div> |
| 18 | </div> |
| 19 | ); |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected