@interopio/workspaces-ui-react
v4.4.0
Published
React version of the workspaces ui component
Downloads
2,512
Maintainers
Keywords
Readme
@interopio/workspaces-ui-react
Overview
The @interopio/workspaces-ui-react library exports the <Workspaces /> component that implements the default Workspaces App used in io.Connect Desktop and io.Connect Browser. You can use this component to create your own custom Workspaces App.
Install
To install the library, execute the following command:
npm install @interopio/workspaces-ui-reactUsage
The following example demonstrates basic usage of the @interopio/workspaces-ui-react library.
ℹ️ For more details on using the
@interopio/workspaces-ui-reactlibrary in io.Connect Desktop, see the io.Connect Desktop official documentation.
ℹ️ For more details on using the
@interopio/workspaces-ui-reactlibrary in io.Connect Browser, see the io.Connect Browser official documentation.
import Workspaces from "@interopio/workspaces-ui-react";
import "@interopio/workspaces-ui-react/dist/styles/workspaces.css";
const WorkspacesApp = () => {
return (
<Workspaces />
);
};
export default WorkspacesApp;