All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import Hero from "./sections/Hero/wrapper";
|
|
|
|
const HomeIndex = () => {
|
|
return (
|
|
<div className="w-full pt-4">
|
|
<Hero />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomeIndex;
|