chore: fix link create AP button (#199)
This commit is contained in:
parent
c10c59ae24
commit
73d48a0e4f
|
|
@ -1,6 +1,7 @@
|
||||||
import { Button } from '@/components';
|
import { Button } from '@/components';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import { Header as HS } from './header.styles';
|
import { Header as HS } from './header.styles';
|
||||||
|
|
||||||
export const Header = () => (
|
export const Header = () => (
|
||||||
<HS.Container>
|
<HS.Container>
|
||||||
<HS.Text>
|
<HS.Text>
|
||||||
|
|
@ -14,7 +15,7 @@ export const Header = () => (
|
||||||
Create an NFA
|
Create an NFA
|
||||||
</Button>
|
</Button>
|
||||||
{/* TODO replace with create ap route */}
|
{/* TODO replace with create ap route */}
|
||||||
<Button as={Link} to="/" colorScheme="gray" variant="outline">
|
<Button as={Link} to="/create-ap" colorScheme="gray" variant="outline">
|
||||||
Host an Access Point
|
Host an Access Point
|
||||||
</Button>
|
</Button>
|
||||||
</HS.ButtonContainer>
|
</HS.ButtonContainer>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue