import * as React from 'react'; import { TableHead, TableRow, TableCell, TableBody, Table, } from '@aws-amplify/ui-react'; import data from '@/data/cssvars-table.json'; export const CssVarsTable = () => { return ( Amplify CSS Variable Default Value {data.map(({ variable, value }) => ( {variable} {value} ))}
); };