Skip to content

Instantly share code, notes, and snippets.

@Nilanth
Created September 12, 2021 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nilanth/5ed60b31397d81103e1252d71230d396 to your computer and use it in GitHub Desktop.
Save Nilanth/5ed60b31397d81103e1252d71230d396 to your computer and use it in GitHub Desktop.
Dashboard Components without suspense
function Dashboard() {
return (
<Tabs defaultActiveKey="1">
<TabPane tab="Sales" key="1">
<Sales/>
</TabPane>
<TabPane tab="Profit" key="2">
<Profit/>
</TabPane>
<TabPane tab="Chart" key="3">
<Chart/>
</TabPane>
<TabPane tab="Tiles" key="4">
<Tiles/>
</TabPane>
<TabPane tab="Trends" key="5">
<Trends/>
</TabPane>
</Tabs>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment