import React, { FC } from 'react'; import css from './index.module.css'; export interface UspProps { items: string[]; } const Usp: FC = ({ items }) => { return (
{items && items.map(item => (
{item}
))}
); }; export default Usp;