import Image, {StaticImageData} from "next/image"; import styles from './FboFbsItem.module.css'; export type FboFbsItemProps = { imgSrc: StaticImageData, headingBulletPoint: string, bulletPoints: string[] }; export function FboFbsItem(props: FboFbsItemProps) { const {imgSrc, headingBulletPoint, bulletPoints} = props; return (
{''}
); };