12 lines
339 B
React
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>
|
|
</>
|
|
);
|
|
} |