@motor-js/cli
Version:
CLI tool for generating Qlik Sense Mashups
26 lines (23 loc) • 655 B
JSX
import React from "react";
import { Row } from "../components";
import Layout from "../layouts";
import Content from "../layouts/content";
import WelcomeArea from "../containers/dashboard-one/welcome-area";
import RowOne from "../containers/dashboard-one/row-one";
import RowTwo from "../containers/dashboard-one/row-two";
import RowThree from "../containers/dashboard-one/row-three";
const DashboardOne = () => {
return (
<Layout>
<Content>
<WelcomeArea />
<Row gutters={10}>
<RowOne />
<RowTwo />
<RowThree />
</Row>
</Content>
</Layout>
);
};
export default DashboardOne;