rename RoomArchive components to differentiate from NewsArchive

This commit is contained in:
Sorrel Bri 2020-01-18 12:20:33 -08:00
parent 42497432df
commit 709358a2cd
4 changed files with 14 additions and 14 deletions

View file

@ -1,12 +0,0 @@
import React from 'react';
import './Archive.scss';
const ArchiveButton = () => {
return (
<>
Archive
</>
);
}
export default ArchiveButton;

View file

@ -0,0 +1,12 @@
import React from 'react';
import './RoomArchive.scss';
const RoomArchiveButton = () => {
return (
<>
Room Archive
</>
);
}
export default RoomArchiveButton;

View file

@ -1,14 +1,14 @@
import React from 'react';
import FindGameForm from '../../components/Form/FindGame/FindGame';
import NewGameButton from '../../components/Button/NewGame/NewGame';
import ArchiveButton from '../../components/Button/Archive/Archive';
import RoomArchiveButton from '../../components/Button/RoomArchive/RoomArchive';
const RoomSidebar = () => {
return (
<>
<FindGameForm />
<NewGameButton />
<ArchiveButton />
<RoomArchiveButton />
</>
);
}