rsnext/examples/with-gsap/components/Home.js
2020-11-09 20:38:07 +00:00

19 lines
450 B
JavaScript

import Title from './Title'
import Content from './Content'
const Home = () => {
return (
<div className="inner">
<Title lineContent="With-GSAP" lineContent2="Using NEXT" />
<div>
<div className="other">
{/* Does project report used question death, out more rhetoric unpleasing
what compared both of sentinels. */}
<Content />
</div>
</div>
</div>
)
}
export default Home