# Function DashboardById Fusion Embed Beta
DashboardById(
props
):null
|ReactElement
<any
,any
>
React component that renders a dashboard created in Sisense Fusion by its ID.
Note: Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
# Parameters
Parameter | Type |
---|---|
props | DashboardByIdProps |
# Returns
null
| ReactElement
< any
, any
>
# Example
import { DashboardById } from '@sisense/sdk-ui';
const CodeExample = () => {
return (
<>
<DashboardById
dashboardOid="65a82171719e7f004018691c"
/>
</>
);
};
export default CodeExample;