customer-dashboard/src/Pages/Dashboard/index.js

15 lines
292 B
JavaScript

import { memo } from "react";
import { Card, Col, Row, Statistic } from "antd";
export default function Dashboard() {
return (
<Row gutter={[16, 16]}>
<Col>
<Card>
<Statistic title="Aktueller Plan" value="Free" />
</Card>
</Col>
</Row>
);
}