fixed broken import statement

This commit is contained in:
knoldus 2022-02-16 14:00:38 +05:30
parent b59718d5ec
commit c540088b12

View File

@ -7,12 +7,12 @@ import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import JSONNode from './JSONNode'; import JSONNode from './JSONNode';
import createStylingFromTheme from './createStylingFromTheme'; import createStylingFromTheme from './createStylingFromTheme';
import { import type {
invertTheme, invertTheme,
type StylingConfig, StylingConfig,
type StylingFunction, StylingFunction,
type StylingValue, StylingValue,
type Theme, Theme,
} from 'react-base16-styling'; } from 'react-base16-styling';
import { CircularPropsPassedThroughJSONTree } from './types'; import { CircularPropsPassedThroughJSONTree } from './types';