@jswork/next-rc-components
Version:
Global react components for next.
26 lines (19 loc) • 599 B
JavaScript
/*!
* name: @jswork/next-rc-components
* description: Global react components for next.
* homepage: https://js.work
* version: 1.0.15
* date: 2025-03-30 12:28:28
* license: MIT
*/
import nx from '@jswork/next';
// logic react components
import ife from '@jswork/react-if-else';
import rcm from '@jswork/react-condition-manager';
import rsm from '@jswork/react-status-manager';
import list from '@jswork/react-list';
nx.$rc = { ife, rcm, rsm, list };
if (typeof module !== 'undefined' && module.exports && typeof wx === 'undefined') {
module.exports = nx.$rc;
}
export default nx.$rc;