Spaces:
Build error
Build error
File size: 419 Bytes
3382f47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import React, { useState } from "react";
import tw from "tailwind-styled-components";
interface ReportsProps {
data: any;
}
const Reports: React.FC<ReportsProps> = ({ data }) => {
return (
<ReportsContainer>
<Table></Table>
</ReportsContainer>
);
};
export default Reports;
const ReportsContainer = tw.div`
w-full
`;
const Table = tw.div`
w-full
border
shadow-lg
rounded-xl
h-96
`;
|