Files
MERN-template/client/components/pages/homepage.jsx
T
2021-02-03 10:01:26 +11:00

16 lines
312 B
React

import React from 'react';
import NewsFeed from '../panels/news-feed';
const HomePage = props => {
//TODO: move the URIs into the config files
return (
<div className='page'>
<p>This is the MERN template homepage.</p>
<NewsFeed uri={process.env.NEWS_URI} />
</div>
);
};
export default HomePage;