SDK

https://cache.sugardev.team/#browse/search=keyword%3Dsdk

Sidecar Documentation

Sidecar

Different ways to import and use in App

import sugarSDK from 'sugarcrm-sdk';
// sugarSDK.getLocale();

import { getLocale } from 'sugarcrm-sdk';
// getLocale();

import getLocale from 'sugarcrm-sdk/src/getLocale';
// getLocale();

Make sure to pass prop view to the Starting Component in wrapper.js

<App
    view={props.view}
</>