Files
imphnen-frontend-service/apps/gacha/src/app/page.tsx
T

14 lines
267 B
TypeScript
Raw Normal View History

2025-03-16 06:38:14 +07:00
import { LandingPage } from '@imphnen-frontend-service/ui/organisms';
2025-03-13 02:03:13 +07:00
import { FC, ReactElement } from 'react';
export const Components: FC = (): ReactElement => {
2025-03-16 06:38:14 +07:00
return (
<>
<LandingPage />
<div></div>
</>
);
2025-03-13 02:03:13 +07:00
};
export default Components;