feat: Added viewer
This commit is contained in:
8
viewer/app/page.tsx
Normal file
8
viewer/app/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { getData } from "@/lib/api";
|
||||
import View from "./view";
|
||||
|
||||
export default async function Page() {
|
||||
const data = await getData();
|
||||
|
||||
return <View data={data} />
|
||||
}
|
||||
Reference in New Issue
Block a user