chore: fix link create AP button (#199)

This commit is contained in:
Camila Sosa Morales 2023-03-31 14:38:22 -03:00 committed by GitHub
parent c10c59ae24
commit 73d48a0e4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { Button } from '@/components';
import { Link } from 'react-router-dom';
import { Header as HS } from './header.styles';
export const Header = () => (
<HS.Container>
<HS.Text>
@ -14,7 +15,7 @@ export const Header = () => (
Create an NFA
</Button>
{/* 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
</Button>
</HS.ButtonContainer>