mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-17 18:30:17 -04:00
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import React from 'react';
|
|
import ArticleList from '../components/ArticleList';
|
|
import Hero from '../components/Hero';
|
|
|
|
export default function News() {
|
|
return (
|
|
<>
|
|
<Hero heading='News' />
|
|
<ArticleList />
|
|
</>
|
|
);
|
|
}
|