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