import { CardsProps } from "./types"; import { Text } from "@shared/components/text"; export const Cards: React.FC<{ fields: CardsProps }> = ({ fields }) => { return (
Cards
); }; export default Cards;