This commit is contained in:
boboiazumi
2025-07-10 10:07:26 +07:00
parent aa52b62ae7
commit eff44c42a1
2 changed files with 11 additions and 3 deletions
+6 -1
View File
@@ -1,7 +1,12 @@
import { Navbar } from '@imphnen-frontend-service/ui/organisms';
import { FC, ReactElement } from 'react';
export const Components: FC = (): ReactElement => {
return <>Hallo</>;
return (
<div className='bg-blue-50'>
<Navbar />
</div>
);
};
export default Components;