Files
Auto-GPT/benchmark/frontend/src/components/data/Reports.tsx
Auto-GPT-Bot 45c15e370f Auto-GPT-20230905085638
Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
2023-09-05 10:10:03 -07:00

29 lines
419 B
TypeScript

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
`;