seawolf2357's picture
Deploy from GitHub repository
3382f47 verified
raw
history blame contribute delete
321 Bytes
import React, { useState } from "react";
import tw from "tailwind-styled-components";
interface RadarChartProps {
data: any;
}
const RadarChart: React.FC<RadarChartProps> = ({ data }) => {
return <RadarChartContainer></RadarChartContainer>;
};
export default RadarChart;
const RadarChartContainer = tw.div`
`;