add a filter option to the addactor popup page

This commit is contained in:
2021-01-03 21:58:55 +01:00
parent 3e9cb7410f
commit 4ca590639d
3 changed files with 60 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ import React from 'react';
import style from './Button.module.css';
interface ButtonProps {
title: string;
title: string | JSX.Element;
onClick?: () => void;
color?: React.CSSProperties;
}