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