import { Link } from 'react-router-dom'; import { CheckCircleIcon } from '@shared/icons'; import { useOnboarding } from '@stores/onboarding'; export function SuggestFollow() { const enrich = useOnboarding((state) => state.enrich); return (
Enrich your network

Follow more people to stay up to date with everything happening around the world.

{enrich ? (
) : ( Check )}
); }