fix: default export error

This commit is contained in:
2025-05-28 15:34:48 +03:00
parent a7982936e3
commit c4cc79637b
4 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

@@ -55,3 +55,5 @@ export default function Home() {
</section> </section>
); );
} }
export { Home };