chore: add plugin panel

This commit is contained in:
Yi
2024-10-18 14:02:40 +08:00
parent b1919745e2
commit 425f624de5
10 changed files with 433 additions and 20 deletions

View File

@ -1,18 +1,26 @@
'use client'
import type { FilterState } from './filter-management'
import FilterManagement from './filter-management'
import List from './list'
const PluginsPanel = () => {
const handleFilterChange = (filters: FilterState) => {
//
}
return (
<>
<div className='flex flex-col pt-1 pb-3 px-12 justify-center items-start gap-3 self-stretch'>
<div className='h-px self-stretch bg-divider-subtle'></div>
<div className='flex items-center gap-2 self-stretch'>
{/* Filters go here */}
</div>
<FilterManagement
onFilterChange={handleFilterChange}
/>
</div>
<div className='flex px-12 items-start content-start gap-2 flex-grow self-stretch flex-wrap'>
<List />
<div className='w-full'>
<List />
</div>
</div>
</>
)