diff --git a/webui/src/pages/Home/components/ActionCard/ActionCard.jsx b/webui/src/pages/Home/components/ActionCard/ActionCard.jsx new file mode 100644 index 0000000..6518dd8 --- /dev/null +++ b/webui/src/pages/Home/components/ActionCard/ActionCard.jsx @@ -0,0 +1,11 @@ +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import "./styles.sass"; + +export const ActionCard = ({ title, icon, onClick }) => { + return ( +
+ +

{title}

+
+ ); +} \ No newline at end of file