Skip to content

Commit a246885

Browse files
committed
removed circular dependency warning
1 parent b0b3128 commit a246885

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/RadioGroup.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import React, { useState } from 'react';
22
import { StyleSheet, View } from 'react-native';
33
import _ from 'lodash';
44

5-
import { RadioButton, RadioButtonProps, RadioGroupProps } from './index';
5+
import RadioButton from './RadioButton';
6+
import { RadioButtonProps, RadioGroupProps } from './types';
67

78
export default function RadioGroup({ containerStyle, layout = 'column', onPress, radioButtons }: RadioGroupProps) {
89

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-radio-buttons-group",
3-
"version": "2.2.5",
3+
"version": "2.2.6",
44
"description": "Simple and Best. An easy to use radio buttons for react native apps.",
55
"main": "./lib/index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)