rename RoomArchive components to differentiate from NewsArchive

This commit is contained in:
Sorrel Bri 2020-01-18 12:20:33 -08:00 committed by sorrelbri
parent 9dc91de5ed
commit b06b490d6f
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 React from 'react';
import FindGameForm from '../../components/Form/FindGame/FindGame'; import FindGameForm from '../../components/Form/FindGame/FindGame';
import NewGameButton from '../../components/Button/NewGame/NewGame'; import NewGameButton from '../../components/Button/NewGame/NewGame';
import ArchiveButton from '../../components/Button/Archive/Archive'; import RoomArchiveButton from '../../components/Button/RoomArchive/RoomArchive';
const RoomSidebar = () => { const RoomSidebar = () => {
return ( return (
<> <>
<FindGameForm /> <FindGameForm />
<NewGameButton /> <NewGameButton />
<ArchiveButton /> <RoomArchiveButton />
</> </>
); );
} }