mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 22:30:56 +00:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
'use client';
|
|
import React from 'react';
|
|
|
|
const __useId = React["useId".toString()] || (() => void 0);
|
|
function useReactId() {
|
|
const id = __useId();
|
|
return id ? `mantine-${id.replace(/:/g, "")}` : "";
|
|
}
|
|
|
|
export { useReactId };
|
|
//# sourceMappingURL=use-react-id.mjs.map
|