Copyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.
The @itwin/components-react package contains React components that are data-oriented, such as PropertyGrid and Tree.
To get started with the @itwin/components-react
package, simply import the necessary components and utilities:
import { Panel, Title } from "@itwin/components-react";
function ListPanel() {
return (
<Panel>
<Title>Panel title</Title>
</Panel>
);
}
For more details, check out the @itwin/components-react documentation.