rename RoomArchive components to differentiate from NewsArchive
This commit is contained in:
parent
101531e727
commit
230dadd3d2
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 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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue