wekstaten update
This commit is contained in:
parent
caffae036c
commit
6d35e92e42
23
ReactJS/alfaprentice/src/Components/Cards/TimeRegister.js
Normal file
23
ReactJS/alfaprentice/src/Components/Cards/TimeRegister.js
Normal file
@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
|
||||
const HourRegister = (porops) => {
|
||||
return(
|
||||
<div className="container">
|
||||
<h3>Vandaag</h3>
|
||||
<div className="row">
|
||||
<div className="col-md-6">
|
||||
<p>Omschrijving</p>
|
||||
<textarea/>
|
||||
</div>
|
||||
<div className="col-md-3">
|
||||
<p>Aantal uren</p>
|
||||
</div>
|
||||
<div className="col-md-3">
|
||||
opslaan
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default HourRegister;
|
||||
@ -1,4 +1,8 @@
|
||||
import React from 'react'
|
||||
//Modules
|
||||
import React from 'react';
|
||||
|
||||
//Components
|
||||
import { HourRegister, HeroOne } from "../../../index";
|
||||
|
||||
class Weekstaten extends React.Component {
|
||||
constructor(props) {
|
||||
@ -8,7 +12,8 @@ class Weekstaten extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
test
|
||||
<HeroOne title="Weekstaten" content="Al je golpen urenj in een overzicht"/>
|
||||
<HourRegister/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@ -7,6 +7,7 @@ import Footer from "./Footer/Footer";
|
||||
import Dropdown from "./Dropdown/Dropdown";
|
||||
import CompanyResults from "./Cards/CompanyResult";
|
||||
import FinishedInternShip from "./Cards/FinishedInternCard";
|
||||
import HourRegister from "./Cards/TimeRegister";
|
||||
|
||||
//Layout imports
|
||||
import DefaultLayout from "./Layouts/DefaultLayout";
|
||||
@ -32,6 +33,7 @@ export {
|
||||
Dropdown,
|
||||
CompanyResults,
|
||||
FinishedInternShip,
|
||||
HourRegister,
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user