forked from govuk-react/govuk-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
54 lines (49 loc) · 1.49 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import * as React from 'react';
import * as GovUK from 'govuk-react';
import { MemoryRouter as Router, Routes, Route } from 'react-router';
import { Link } from 'react-router-dom';
import Home from './home';
import Forms from './forms/forms';
const ExampleApplication: React.FC<ExampleApplicationProps> = ({ routerEntries }: ExampleApplicationProps) => (
<React.StrictMode>
<Router initialEntries={routerEntries}>
<GovUK.GlobalStyle />
<GovUK.TopNav
serviceTitle={
<GovUK.TopNav.Anchor as={Link} to="/">
React
</GovUK.TopNav.Anchor>
}
search={
<GovUK.SearchBox>
<GovUK.SearchBox.Input placeholder="Search GOV.UK" />
<GovUK.SearchBox.Button />
</GovUK.SearchBox>
}
>
<GovUK.TopNav.NavLink as={Link} to="/">
Home
</GovUK.TopNav.NavLink>
<GovUK.TopNav.NavLink as={Link} to="/forms">
Forms
</GovUK.TopNav.NavLink>
</GovUK.TopNav>
<GovUK.Page.WidthContainer>
<GovUK.Page.Main>
<Routes>
<Route path="/forms/*" element={<Forms />} />
<Route path="/" element={<Home />} />
</Routes>
</GovUK.Page.Main>
</GovUK.Page.WidthContainer>
<GovUK.Footer />
</Router>
</React.StrictMode>
);
export interface ExampleApplicationProps {
routerEntries?: string[];
}
ExampleApplication.defaultProps = {
routerEntries: undefined,
};
export default ExampleApplication;