Skip to content

Commit

Permalink
Fix Three.js example's BoxesPage variable name (#16900)
Browse files Browse the repository at this point in the history
The BirdsPage name seems to have been copy/pasted from `pages/birds.js` and forgotten by mistake.
  • Loading branch information
akd-io committed Sep 7, 2020
1 parent f077a39 commit 2058c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/with-three-js/pages/boxes.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const MyBox = (props) => {
)
}

const BirdsPage = () => {
const BoxesPage = () => {
return [
<h1>Click on me - Hover me :)</h1>,
<Canvas camera={{ position: [0, 0, 35] }}>
Expand All @@ -46,4 +46,4 @@ const BirdsPage = () => {
]
}

export default BirdsPage
export default BoxesPage

0 comments on commit 2058c9f

Please sign in to comment.