* Creates a new instance of the component. * @class * @param props - The props of the component.
(props: Props)
| 24 | * @param props - The props of the component. |
| 25 | */ |
| 26 | constructor(props: Props) { |
| 27 | super(props) |
| 28 | |
| 29 | this.state = { |
| 30 | ...initialState, |
| 31 | stack: [props.initialView], |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Renders the component. |
nothing calls this directly
no outgoing calls
no test coverage detected