fix: page export #3

Merged
redrockjs merged 1 commits from dev into main 2025-05-27 13:28:54 +00:00
3 changed files with 5 additions and 4 deletions
Showing only changes of commit 8cc177b9a7 - Show all commits

View File

@@ -1,4 +1,4 @@
import {HomePage} from "@pages/home"; import HomePage from "@pages/home";
export default function Home() { export default function Home() {
return ( return (

View File

@@ -1 +1 @@
export {default as HomePage} from './ui/Home' export {default} from './ui/Home'

View File

@@ -1,8 +1,9 @@
function Home() {
export default function Home() {
return ( return (
<main> <main>
Home Home
</main> </main>
) )
} }
export default Home;