add contest thunck and remove google button

This commit is contained in:
Виталий Лавшонок
2025-12-02 22:34:28 +03:00
parent 2e5d4b2653
commit 95f7479375
6 changed files with 459 additions and 162 deletions

View File

@@ -19,35 +19,7 @@ const Filters = () => {
return (
<div className=" h-[50px] mb-[20px] flex gap-[20px] items-center">
<SearchInput onChange={() => {}} placeholder="Поиск задачи" />
<SorterDropDown
items={[
{
value: '1',
text: 'Сложность',
},
{
value: '2',
text: 'Дата создания',
},
{
value: '3',
text: 'ID',
},
]}
onChange={(v) => {
v;
}}
/>
<FilterDropDown
items={items}
defaultState={[]}
onChange={(values) => {
values;
}}
/>
<SearchInput onChange={() => {}} placeholder="Поиск группы" />
</div>
);
};