(state: RootState)
| 2 | import { RootState } from '~core/store' |
| 3 | |
| 4 | export const getComponents = (state: RootState) => |
| 5 | state.components.present.components |
| 6 | |
| 7 | export const getComponentBy = (nameOrId: string | IComponent['id']) => ( |
| 8 | state: RootState, |
nothing calls this directly
no outgoing calls
no test coverage detected