Skip to content

Commit

Permalink
adding filters to eudr page
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsingal committed Mar 1, 2024
1 parent e199225 commit f5ef23d
Show file tree
Hide file tree
Showing 9 changed files with 595 additions and 1 deletion.
13 changes: 13 additions & 0 deletions client/src/containers/analysis-eudr/filters/component.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import MoreFilters from './more-filters';
import YearsRange from './years-range';

const EUDRFilters = () => {
return (
<div className="flex space-x-2">
<YearsRange />
<MoreFilters />
</div>
);
};

export default EUDRFilters;
1 change: 1 addition & 0 deletions client/src/containers/analysis-eudr/filters/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './component';
Loading

0 comments on commit f5ef23d

Please sign in to comment.