@glasshouse/components
v0.9.25
Published
[](https://main--668b65bdcf16256d1a25e70c.chromatic.com) [ => (
<html lang="en">
<body>
{...}
</body>
</html>
);
export default RootLayout;Import the components you need from the @glasshouse/components package:
import { Grid } from '@glasshouse/components';
const Component = () => (
<div>
<Grid>
<Grid.Cell>I am a Grid Cell</Grid.Cell>
</Grid>
</div>
);
export default App;