mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-19 05:54:31 +01:00
29 lines
419 B
TypeScript
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
|
|
`;
|