11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { FC, ReactElement } from 'react';
|
|
import { HeroSection } from './_components/hero-section';
|
|
|
|
export const Components: FC = (): ReactElement => {
|
|
return (
|
|
<HeroSection />
|
|
);
|
|
};
|
|
|
|
export default Components;
|