mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-20 08:39:43 -06:00
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
import * as React from 'react';
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
const RadioGroupContext = /*#__PURE__*/React.createContext(undefined);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
RadioGroupContext.displayName = 'RadioGroupContext';
|
|
}
|
|
export default RadioGroupContext; |