rename RoomArchive components to differentiate from NewsArchive
This commit is contained in:
parent
42497432df
commit
709358a2cd
4 changed files with 14 additions and 14 deletions
|
@ -1,12 +0,0 @@
|
||||||
import React from 'react';
|
|
||||||
import './Archive.scss';
|
|
||||||
|
|
||||||
const ArchiveButton = () => {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
Archive
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ArchiveButton;
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
import React from 'react';
|
||||||
|
import './RoomArchive.scss';
|
||||||
|
|
||||||
|
const RoomArchiveButton = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
Room Archive
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default RoomArchiveButton;
|
|
@ -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 />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue