[data explorer][xs]: just display resource metadata and About component on resource page.

For details see https://github.com/datopian/portal/issues/12
This commit is contained in:
anuveyatsu
2020-06-17 11:34:14 +06:00
parent bb22cac696
commit f2e15577e2
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)}</>
}