Bachelorthesis_Code/frontend/src/components/SubmitField.js
cami 04cdc9dd7e Added various css things
- Designed login and register buttons
- removed some unnecessary css things
- changed some small things in the design
2021-06-23 03:16:09 +02:00

15 lines
308 B
JavaScript

import React from "react";
import "./Input.css"
import "./Button.css"
function SubmitField(props) {
const InputValue = props.LabelName;
return (
<label className="input-field">
<input type="submit" onClick={props.onClick} value={InputValue} />
</label>
);
}
export default SubmitField;