This package is owned by SPS Commerce. The intent of this package is to expose cross reference micro UIs for consumption.
These micro UIs use the same set of props:
-
orgId
: The ID of the organization. -
currentUser
: The current user object. -
env
: The environment configuration
Below are the differnt components and how they can be imported.
The connections xref UI can be imported with:
import { Connections } from "@spscommerce/xref-management";
It can then be used a regular component:
<Connections orgId={orgId} currentUser={currentUser} env={env} />
The locations xref UI can be imported with:
import { Locations } from "@spscommerce/xref-management";
It can then be used as a regular component:
<Locations orgId={orgId} currentUser={currentUser} env={env} />