split stuff up

This commit is contained in:
MapleLeaf
2021-12-29 17:12:42 -06:00
parent 401fcd2f16
commit eef9d3a0bc
5 changed files with 45 additions and 38 deletions

View File

@@ -9,7 +9,9 @@ export default function Index() {
const data: DocsJson = useLoaderData()
return (
<main>
<pre>{JSON.stringify(data, undefined, 2)}</pre>
<pre className="w-full overflow-x-auto">
{JSON.stringify(data, undefined, 2)}
</pre>
</main>
)
}