import React from "react";
import { Col, Card, Row, Statistic } from "antd";
class Workplace extends React.Component {
constructor(props) {
super(props);
this.state = {
items: [],
DataisLoaded: false,
};
}
componentDidMount() {
fetch("http://localhost:3005/results")
.then((res) => res.json())
.then((json) => {
this.setState({
items: json,
DataisLoaded: true,
});
});
}
render() {
const { DataisLoaded, items } = this.state;
if (!DataisLoaded) return <div>Give me time</div>;
return (
<div className="import-container">
<Row gutter={{ xs: 8, sm: 16, md: 24, lg: 32 }}>
</Row>
</div>
);
}
}
export default Workplace;