Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

20
node_modules/recharts/es6/util/useId.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
var _ref;
import * as React from 'react';
import { uniqueId } from './DataUtils';
/**
* Fallback for React.useId() for versions prior to React 18.
* Generates a unique ID using a simple counter and a prefix.
*
* @returns A unique ID that remains consistent across renders.
*/
export var useIdFallback = () => {
var [id] = React.useState(() => uniqueId('uid-'));
return id;
};
/*
* This weird syntax is used to avoid a build-time error in React 17 and earlier when building with Webpack.
* See https://github.com/webpack/webpack/issues/14814
*/
export var useId = (_ref = React['useId'.toString()]) !== null && _ref !== void 0 ? _ref : useIdFallback;