@motor-js/cli
Version:
CLI tool for generating Qlik Sense Mashups
21 lines (18 loc) • 478 B
JSX
import React from "react";
import { Container } from "../../components";
import { StyledContent } from "./style";
const Content = ({ children, className, fullHeight, align, ...restProps }) => {
return (
<StyledContent
$fullHeight={fullHeight}
$align={align}
className={className}
{...restProps}
>
<Container className="container" pl="0" pr="0">
{children}
</Container>
</StyledContent>
);
};
export default Content;