@xplortech/insights-elements-react
v0.0.3
Published
React components for Xplor Insights
Downloads
245
Keywords
Readme
@xplortech/insights-elements-react
React components for Xplor Insights.
Installation
npm install @xplortech/insights-elements-reactUsage
See the StoryBook for usage instructions and examples.
With Static Token
import {
InsightsWrapper,
InsightsLineChart,
} from "@xplortech/insights-elements-react";
function App() {
return (
<InsightsWrapper
apiUrl="https://api.insights.example.com"
token="your-token"
onTokenExpired={() => console.log("Token expired")}
>
<InsightsLineChart
reportName="sales-data"
filters={{ region: "north" }}
/>
</InsightsWrapper>
);
}