[resource page][m]: initially working resource page with support of datastore and non-datastore resources.

This commit is contained in:
anuveyatsu
2020-06-15 15:53:12 +06:00
parent bc6849b7dc
commit bb22cac696
7 changed files with 402 additions and 10 deletions

View File

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