Liste fertig Anmeldung weiter

Liste fertig Anmeldung weiter
This commit is contained in:
Manuel Prodinger
2022-04-20 12:19:50 +02:00
parent a36bd54a0d
commit 6622dac24c
6 changed files with 75 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
import React from "react";
function ButtonRound(props) {
return (
<button class="bg-primary hover:bg-primaryHover rounded-full h-9 w-9 text-white m-3">
{" "}
{props.name || "Button"}{" "}
</button>
);
}
export default ButtonRound;