Skip to content

Commit

Permalink
chore: not fond -> not found
Browse files Browse the repository at this point in the history
  • Loading branch information
langz committed Sep 22, 2023
1 parent a332f6b commit 2487b1c
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 2487b1c

Please sign in to comment.