Kvaser CanKing GUI Extensions SDK - v7.3.0
    Preparing search index...

    Function CanKingDataProvider

    • Creates a data provider to access CanKing data. The CanKingDataProvider component is needed to be at the root of the component tree to make it possible to use the CanKing UI Controls.

      Parameters

      • props: { children?: ReactNode; initialUserSettings?: IUserSettings }

        Component properties.

      Returns Element

      The CanKingDataProvider React component.

      const container = document.getElementById('root') as HTMLElement;
      const root = createRoot(container);
      root.render(
      <React.StrictMode>
      <CanKingDataProvider>
      <App />
      </CanKingDataProvider>
      </React.StrictMode>,
      );