Skip to content

Commit

Permalink
chore: not fond -> not found (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
langz authored Sep 27, 2023
1 parent 7d88ff5 commit 2667100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/sb-theme-example/src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react'

const NotFond = () => {
const NotFound = () => {
return (
<>
<h1>404</h1>
</>
)
}

export default NotFond
export default NotFound
4 changes: 2 additions & 2 deletions examples/ui-theme-example/src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react'

const NotFond = () => {
const NotFound = () => {
return (
<>
<h1>404</h1>
</>
)
}

export default NotFond
export default NotFound

0 comments on commit 2667100

Please sign in to comment.