import { AnimateValue } from '@nx/nx-dev/ui-animations'; const statistics = [ { id: 1, name: 'use Nx every day', value: 2, suffix: ' million', associative: 'developers', }, { id: 2, name: 'companies use Nx to ship their products', value: 50, suffix: '%', associative: 'of Fortune 500', }, { id: 3, name: 'on NPM every month', value: 18, suffix: ' million', associative: 'downloads', }, ]; export function Statistics(): JSX.Element { return (
{statistics.map((stat) => (
{stat.name}
{' '} {stat.associative}
))}
); }