design sidebar & head layout & page dashboard
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import AmountOfIncome from "./amountOfIncome";
|
||||
import Cards from "./Cards";
|
||||
import List from "./list";
|
||||
|
||||
function PanelPage({ data }) {
|
||||
return (
|
||||
<div className="flex mt-[4px] flex-col gap-[20px]">
|
||||
<Cards data={data} />
|
||||
<List data={data} />
|
||||
<AmountOfIncome data={data} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default PanelPage
|
||||
Reference in New Issue
Block a user