git sync for colleagues.

All in 1 big commit :)...
Do as I say... not as I do (in my private stuff anyway)
This commit is contained in:
2022-05-12 11:34:53 +02:00
parent 2f10c28aa4
commit 7a68e42288
151 changed files with 20431 additions and 18763 deletions

View File

@@ -0,0 +1,11 @@
import React, { FunctionComponent } from "react";
type Props = { label: string; link?: string; onClick?: () => {} };
export const FilterListItem: FunctionComponent<Props> = ({ label, link, onClick }) => {
return (
<li onClick={onClick} key={link} className="filter">
{link !== undefined ? <a href={link}>{label}</a> : label}
</li>
);
};

View File

@@ -0,0 +1,11 @@
import React, { FunctionComponent } from "react";
type Props = {};
export const FilterList: FunctionComponent<Props> = ({ children }) => {
return (
<ul id="filter-list" className="clearfix">
{children}
</ul>
);
};