import ListFilterBar from '@/components/list-filter-bar'; import { useFetchFlowList } from '@/hooks/flow-hooks'; import { Plus } from 'lucide-react'; import { SearchCard } from './search-card'; export default function SearchList() { const { data } = useFetchFlowList(); return (
Create app
{data.map((x) => { return ; })}
); }