Skip to content

Instantly share code, notes, and snippets.

@patrikbraborec
Created January 10, 2022 10:03
Show Gist options
  • Save patrikbraborec/bd4f3284c365fa9f2164397b3acba616 to your computer and use it in GitHub Desktop.
Save patrikbraborec/bd4f3284c365fa9f2164397b3acba616 to your computer and use it in GitHub Desktop.
import React from "react";
import { InsightView } from "@gooddata/sdk-ui-ext";
import Page from "../components/Page";
import { Insights } from "../md/full";
const Home = () => {
return (
<Page>
<h1>Short term analysis</h1>
<div style={{ height: "300px" }}>
<InsightView insight={Insights.OrdersStatusLast7Days} />
</div>
<h1>Long term analysis</h1>
<div style={{ height: "300px" }}>
<InsightView insight={Insights.OrdersMonth} />
</div>
</Page>
);
};
export default Home;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment