UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 281 B
const loggerImpl = (f, name) => (set, get, store) => { const loggedSet = (...a) => { set(...a); console.log(...(name ? [`${name}:`] : []), get()); }; store.setState = loggedSet; return f(loggedSet, get, store); }; export const logger1 = loggerImpl;