datahub/apps/site/pages/excel-viewer.js
Luccas Mateus de Medeiros Gomes fda6c4b827 [monorepo][lg] - start of monorepo
2023-04-10 22:22:34 -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>
)
}