Add sidebar for displaying selected cell

This commit is contained in:
2022-01-16 02:26:17 -05:00
parent 9a07f552b5
commit 79015201b0
6 changed files with 87 additions and 29 deletions

View File

@@ -1,13 +0,0 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type { NextApiRequest, NextApiResponse } from 'next'
type Data = {
name: string
}
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>
) {
res.status(200).json({ name: 'John Doe' })
}