2 menus
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
import { FC } from "react";
|
||||
import { Spreadsheet } from "../../../../components";
|
||||
import { DualSpreadsheet } from "../../../../components";
|
||||
import { exampleCalculationsData, exampleTemplateData } from "../../../../lib/template-data";
|
||||
|
||||
const Home: FC = () => {
|
||||
const initialData = {
|
||||
Report: exampleTemplateData,
|
||||
Calculations: exampleCalculationsData
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="h-screen bg-gray-50">
|
||||
<Spreadsheet />
|
||||
<DualSpreadsheet templateData={initialData} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user