211eb460cb
NEWS_URI and AUTH_URI had the end of their routes lopped off, so I could reference /admin using either one of them.
15 lines
240 B
React
15 lines
240 B
React
import React from 'react';
|
|
|
|
import NewsFeed from '../panels/news-feed';
|
|
|
|
const HomePage = props => {
|
|
return (
|
|
<div className='page'>
|
|
<p>This is the MERN template homepage.</p>
|
|
<NewsFeed />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|