datahub/site/pages/excel-viewer.js
2023-04-11 11:24:01 -03:00

13 lines
277 B
JavaScript

import Head from 'next/head'
import SheetJSApp from '../components/ExcelViewerApp.js'
import Layout from '../components/Layout'
export default function Index() {
return (
<Layout title='Excel Viewer'>
<h1>Excel Viewer</h1>
<SheetJSApp />
</Layout>
)
}