Merge branch 'master' into implement-minimal-front-page

This commit is contained in:
anuveyatsu
2020-06-17 11:43:54 +06:00
5 changed files with 11 additions and 283 deletions

View File

@@ -1,9 +1,5 @@
import Link from 'next/link'
export default function DataExplorer({ resource }) {
return (
<>
{JSON.stringify(resource, null, 2)}
</>
)
return <>{JSON.stringify(resource)}</>
}

View File

@@ -1,9 +0,0 @@
import Link from 'next/link'
export default function DataView({ resource }) {
return (
<>
{JSON.stringify(resource, null, 2)}
</>
)
}