9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
import React from "react";
|
|
import { Hero } from "../components/hero";
|
|
|
|
const LandingPage = () => {
|
|
return <Hero />;
|
|
};
|
|
|
|
export default LandingPage;
|