1// Welcome to Code in Quarry
2// Get started: https://quarry.studio/build/
3
4import Sample from "https://quarry.studio/m/quarry/Sample.js@^1.0.0"
5
6/**
7 * These annotations control how your component sizes
8 * Learn more: https://quarry.studio/build/#code-components-auto-sizing
9 *
10 * @quarrySupportedLayoutWidth auto
11 * @quarrySupportedLayoutHeight auto
12 */
13export default function Panel_Card(props) {
14 // A UI component that wraps the Sample element
15 // — Replace <Sample /> with your own markup
16 // — Browse patterns: https://quarry.studio/build/
17
18 return (
19 <div style={containerStyle}>
20 <Sample />
21 </div>
22 )
23}
24
25// Styles are written in object syntax
26// Learn more: https://quarry.studio/build/style-objects
27const containerStyle = {
28 height: "100%",
29 display: "flex",
30 justifyContent: "center",
31 alignItems: "center",
32 overflow: "hidden",
33}
34