Begin job details cards.

This commit is contained in:
Patrick Fic
2020-01-07 16:44:14 -08:00
parent e65273f2b6
commit 16eceb192f
9 changed files with 108 additions and 35 deletions

View File

@@ -0,0 +1,8 @@
import React from "react";
import { useTranslation } from "react-i18next";
import { Card } from "antd";
export default function JobDetailCardsCustomerComponent({ loading, data }) {
const { t } = useTranslation();
return <Card loading={loading}>Card has loaded.</Card>;
}