fix: page export

This commit is contained in:
2025-05-27 16:26:58 +03:00
parent f42bc38ffa
commit 8cc177b9a7
3 changed files with 5 additions and 4 deletions

View File

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

View File

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

View File

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