File size: 342 Bytes
a5f760c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import LangTable from "./components/LangTable";
import { getLangTableData } from "./lib/library";

export default async function Home() {

  const tableData = await getLangTableData();

  return (
    <>
      <h1>Library Overview</h1>
      <div className="flex-auto">
        <LangTable tableData={tableData} />
      </div>
    </>
  );
}