Handles connection to nebula and configuration of the object types. This is component provides context to all NebulaContainer and NebulaSelections components in your app.
1
// 1. Import the Motor component
2
import{ Motor } from @motor-js/engine
3
import{ NebulaConnection } from @motor-js/nebula
4
5
functionApp(){
6
7
return(
8
// 2. Use at the root of your project
9
<Motor
10
config={
11
host:"myqliksite.qlik.com",
12
secure:true,
13
port:433,
14
prefix:"",
15
appId:'myAwesomeApp',
16
}
17
>
18
<NebulaConnection>
19
<App/>
20
</NebulaConnection>
21
</Motor>
22
)
23
}
Copied!
Props
There are no props you can pass into this component