UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

7 lines 187 B
import { useState } from 'react'; import { v4 as uuidV4 } from 'uuid'; export const useUuid = () => { const [uuid] = useState(uuidV4); return uuid; }; //# sourceMappingURL=uuid.js.map