import classnames from 'classnames'; import styles from './styles.module.scss'; /** * @since 4.8.0 */ type GridProps = { children: React.ReactNode; ariaLabel: string; }; /** * @since 4.8.0 */ export default function Grid({children, ariaLabel}: GridProps) { return (
{children}
); } /** * @since 4.8.0 */ type GridCardProps = { children: React.ReactNode; heading: string; headingId: string; className?: string; }; /** * @since 4.8.0 */ export function GridCard({children, heading, headingId, className}: GridCardProps) { return (

{heading}

{children}
); }