mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import * as React from 'react';
|
|
import { RadioGroupContextProps } from './interface';
|
|
|
|
const RadioGroupContext = React.createContext<RadioGroupContextProps | null>(null);
|
|
|
|
export const RadioGroupContextProvider = RadioGroupContext.Provider;
|
|
|
|
export default RadioGroupContext;
|