Skip to content
Snippets Groups Projects
Commit 555b4b03 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

wiki overview

parent 96fb0745
No related branches found
No related tags found
No related merge requests found
export function WikiOverview(){
return(
<div>
</div>
)
}
\ No newline at end of file
...@@ -4,6 +4,7 @@ import React from "react"; ...@@ -4,6 +4,7 @@ import React from "react";
import { Started } from "./wiki-start"; import { Started } from "./wiki-start";
import { Sources } from "./wiki-sources"; import { Sources } from "./wiki-sources";
import { Troubleshooting } from "./troubleshooting"; import { Troubleshooting } from "./troubleshooting";
import { WikiOverview } from "./wiki-overview";
export function WikiTabs() { export function WikiTabs() {
const [value, setValue] = React.useState('1'); const [value, setValue] = React.useState('1');
...@@ -17,7 +18,7 @@ export function WikiTabs() { ...@@ -17,7 +18,7 @@ export function WikiTabs() {
<TabContext value={value}> <TabContext value={value}>
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}> <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
<TabList onChange={handleChange} aria-label="lab API tabs example"> <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="Getting started" value="6" />
<Tab label="Troubleshooting" value="2" /> <Tab label="Troubleshooting" value="2" />
<Tab label="Components" value="3" /> <Tab label="Components" value="3" />
...@@ -26,7 +27,7 @@ export function WikiTabs() { ...@@ -26,7 +27,7 @@ export function WikiTabs() {
</TabList> </TabList>
</Box> </Box>
<TabPanel value="1"> </TabPanel> <TabPanel value="1"> <WikiOverview/> </TabPanel>
<TabPanel value="6"> <Started/> </TabPanel> <TabPanel value="6"> <Started/> </TabPanel>
<TabPanel value="2"> <Troubleshooting/> </TabPanel> <TabPanel value="2"> <Troubleshooting/> </TabPanel>
<TabPanel value="3"> </TabPanel> <TabPanel value="3"> </TabPanel>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment