Started with web application
This commit is contained in:
parent
7beda138c5
commit
75f2365024
40 changed files with 17382 additions and 0 deletions
13
frontend/src/components/SubmitInput.jsx
Normal file
13
frontend/src/components/SubmitInput.jsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React from "react";
|
||||
import "./Input.css";
|
||||
|
||||
function SubmitInput(props) {
|
||||
return (
|
||||
<label className="submit-field">
|
||||
<p>{props.label}</p>
|
||||
<input type="submit" value={props.value} />
|
||||
</label>
|
||||
);
|
||||
}
|
||||
|
||||
export default SubmitInput;
|
Loading…
Add table
Add a link
Reference in a new issue