add filter side bar

This commit is contained in:
WindowsCrashed
2023-08-08 23:23:11 -03:00
parent ebb7966cd1
commit 264d126414
7 changed files with 159 additions and 42 deletions

View File

@@ -10,9 +10,7 @@ type Props = {
export const SelectedQuestionsSideBar: FC<Props> = ({ questions }) => {
return (
<SideBar>
<h1>Questões Selecionadas</h1>
<hr className="h-1 mt-2"/>
<SideBar header="Questões Selecionadas">
<div>
{questions.length ?
questions.map(q => <SelectedQuestionCard