@itwin/core-react
v5.0.0
Published
A react component library of iTwin.js UI general purpose components
Downloads
27,594
Readme
@itwin/core-react
Copyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.
Description
The @itwin/core-react package contains general purpose React components, such as Dialog, MessageBox, SearchBox, RadialMenu.
Usage
To get started with the @itwin/core-react
package, simply import the necessary components and utilities:
import { ContextMenu, ContextMenuItem } from "@itwin/core-react";
export function App() {
return (
<ContextMenu>
<ContextMenuItem>Item 1</ContextMenuItem>
</ContextMenu>
);
}
For more details, check out the @itwin/core-react documentation.