What is the correct way to import StepIndicator?
import StepIndicator from "react-native-step-indicator"; and import * as StepIndicator from "react-native-step-indicator"; not work. It says Property render is missing. Changing this line to import * as React from "react" work.
What is the correct way to import
StepIndicator
?import StepIndicator from "react-native-step-indicator";
andimport * as StepIndicator from "react-native-step-indicator";
not work. It saysProperty render is missing
. Changing this line toimport * as React from "react"
work.