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;
|