UNPKG

@proca/widget

Version:

Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di

9 lines (7 loc) 253 B
import useCount from "@hooks/useCount.js"; export default function Counter(props) { const count = useCount(props.actionPage) || props.count; return count ? count.toString().replace(/\B(?=(\d{3})+(?!\d))/g, props.separator || "'") : null; }