wochenbericht-manager/src/jsx/ui/worktimes.jsx

24 lines
449 B
JavaScript

import React from 'react';
import {
FileLoader
} from './fileLoader'
import {
DB
} from './../static/storage'
//import 'react-infinite-calendar/styles.css'; // only needs to be imported once
var me;
export class WorkTimes extends React.Component {
constructor(props) {
super(props);
this.state = {
rel: false
}
}
render() {
return ( <div id = "home-frame" >
</div>);
}
}