diff --git a/src/contents/Contribution/Wiki/wiki-overview.tsx b/src/contents/Contribution/Wiki/wiki-overview.tsx new file mode 100644 index 0000000000000000000000000000000000000000..33162dbdda5365bad6883f69cf48aeb42a54b42c --- /dev/null +++ b/src/contents/Contribution/Wiki/wiki-overview.tsx @@ -0,0 +1,8 @@ +export function WikiOverview(){ + + return( + <div> + + </div> + ) +} \ No newline at end of file diff --git a/src/contents/Contribution/Wiki/wiki-tabs.tsx b/src/contents/Contribution/Wiki/wiki-tabs.tsx index 71d63da43c1ad6bb846e4cb56dcb75f29ca9d880..c95bff1142dfe8f0fa99b48de53c73d09c68bccc 100644 --- a/src/contents/Contribution/Wiki/wiki-tabs.tsx +++ b/src/contents/Contribution/Wiki/wiki-tabs.tsx @@ -4,6 +4,7 @@ import React from "react"; import { Started } from "./wiki-start"; import { Sources } from "./wiki-sources"; import { Troubleshooting } from "./troubleshooting"; +import { WikiOverview } from "./wiki-overview"; export function WikiTabs() { const [value, setValue] = React.useState('1'); @@ -17,7 +18,7 @@ export function WikiTabs() { <TabContext value={value}> <Box sx={{ borderBottom: 1, borderColor: 'divider' }}> <TabList onChange={handleChange} aria-label="lab API tabs example"> - <Tab label="About" value="1" /> + <Tab label="Overview" value="1" /> <Tab label="Getting started" value="6" /> <Tab label="Troubleshooting" value="2" /> <Tab label="Components" value="3" /> @@ -26,7 +27,7 @@ export function WikiTabs() { </TabList> </Box> - <TabPanel value="1"> </TabPanel> + <TabPanel value="1"> <WikiOverview/> </TabPanel> <TabPanel value="6"> <Started/> </TabPanel> <TabPanel value="2"> <Troubleshooting/> </TabPanel> <TabPanel value="3"> </TabPanel>