1// Welcome to Code in Marlow
2// Get started: https://marlow.studio/docs/guides
3
4import Prism from "https://marlow.studio/m/marlow/Prism.js@^2.4.0"
5
6/**
7 * These annotations control how your component sizes
8 * Learn more: https://marlow.studio/docs/guides/auto-sizing
9 *
10 * @marlowSupportedLayoutWidth auto
11 * @marlowSupportedLayoutHeight auto
12 */
13export default function Bright_blocks(props) {
14 // This is a component wrapping a single Prism element
15 // — Replace <Prism /> with your own code
16 // — Find inspiration: https://marlow.studio/developers
17
18 return (
19 <div style={containerStyle}>
20 <Prism />
21 </div>
22 )
23}
24
25// Styles are written in object syntax
26// Learn more: https://marlow.studio/docs/style-objects
27const containerStyle = {
28 height: "100%",
29 display: "flex",
30 justifyContent: "center",
31 alignItems: "center",
32 overflow: "hidden",
33}
34