[Examples] Add a stupid 404 page (#2694)
Use a 404 Page. ### Change Type - [x] `documentation` — Changes to the documentation only[^2]
This commit is contained in:
parent
34a95b2ec8
commit
cbc0649047
1 changed files with 4 additions and 0 deletions
|
@ -24,6 +24,10 @@ const basicExample = gettingStartedExamples.value.find((e) => e.title === 'Basic
|
||||||
if (!basicExample) throw new Error('Could not find basic example')
|
if (!basicExample) throw new Error('Could not find basic example')
|
||||||
|
|
||||||
const router = createBrowserRouter([
|
const router = createBrowserRouter([
|
||||||
|
{
|
||||||
|
path: '*',
|
||||||
|
element: <div>404</div>,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
lazy: async () => {
|
lazy: async () => {
|
||||||
|
|
Loading…
Reference in a new issue