Working on the news feed

This commit is contained in:
2021-02-02 04:17:26 +11:00
parent 969534c0f6
commit 13b83953c3
4 changed files with 52 additions and 15 deletions
+1 -2
View File
@@ -2,7 +2,7 @@ import React from 'react';
import { Redirect } from 'react-router-dom';
import { useCookies } from 'react-cookie';
import BannedEmails from '../panels/banned-emails';
//import BannedEmails from '../panels/banned-emails';
import NewsPublisher from '../panels/news-publisher';
const Admin = props => {
@@ -16,7 +16,6 @@ const Admin = props => {
return (
<div className='page'>
<h1 className='centered'>Administration</h1>
<BannedEmails />
<NewsPublisher />
</div>
);