14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
import { MetaTags } from '@redwoodjs/web'
|
|
import ArticlesCell from 'src/components/ArticlesCell'
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<>
|
|
<MetaTags title="Home" description="Home page" />
|
|
<ArticlesCell />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default HomePage
|