import React from 'react'; import PieChart from '../../charts/PieChart'; // Import utilities import { tailwindConfig } from '../../utils/Utils'; function FintechCard09() { const chartData = { labels: ['Cash', 'Commodities', 'Bonds', 'Stock'], datasets: [ { label: 'Sessions By Device', data: [12, 13, 10, 65], backgroundColor: [ tailwindConfig().theme.colors.emerald[400], tailwindConfig().theme.colors.yellow[400], tailwindConfig().theme.colors.sky[400], tailwindConfig().theme.colors.indigo[500], ], hoverBackgroundColor: [ tailwindConfig().theme.colors.emerald[500], tailwindConfig().theme.colors.yellow[500], tailwindConfig().theme.colors.sky[500], tailwindConfig().theme.colors.indigo[600], ], borderWidth: 0, }, ], }; return (

Portfolio Value

Hey Mark, here is the value of your portfolio:
$224,807.27
{/* Chart built with Chart.js 3 */} {/* Change the height attribute to adjust the chart height */}
); } export default FintechCard09;