lukaskupczyk/react-hook-consent

View on GitHub
docs/src/components/homepage/features/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Feature } from './Feature';
import { features } from './features';
import styles from './index.module.css';

export function HomepageFeatures(): JSX.Element {
    return (
        <section className={styles.features}>
            <div className="container">
                <div className="row">
                    {features.map((props, idx) => (
                        <Feature key={idx} {...props} />
                    ))}
                </div>
            </div>
        </section>
    );
}