import { Box, Grid, Stack, Typography } from '@mui/material'; import ExampleCard from './ExampleCard'; export interface ExampleCardProps { title: string; description: string; sampleText: string; sampleResult: string; requiredOptions: RequiredOptionsProps; } export interface RequiredOptionsProps { joinCharacter: string; deleteBlankLines: boolean; deleteTrailingSpaces: boolean; } interface ExampleProps { title: string; subtitle: string; exampleCards: ExampleCardProps[]; } export default function Examples({ title, subtitle, exampleCards }: ExampleProps) { return ( {title} {subtitle} {exampleCards.map((card) => ( ))} ); }