Files
TIF22A_AnwProjekt_B/anwendung/src/components/InputFormButtons.jsx
T

12 lines
339 B
React

import Button from './Button';
export default function InputFormButtons() {
return (
<>
<div id="buttons">
<Button color="red" width="100px" height="30px" text="Abbrechen"/>
<Button color="green" width="100px" height="30px" text="Erstellen"/>
</div>
</>
);
}