how to use import statement to import functions from one component to other component.
Below is how the import statement is:
import Tool from '../Common'; import { ToolContextProvider } from '../Common'; This complaint of duplicate lines. So I have tried something like below,
import { ToolContextProvider, Tool} from '../Common'; But this doesn't seem to be correct. How can write this in one line. Could someone help me with this? Thanks.