1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
function Hello() { return <p>Hello kwui</p>; } var helloStyle = css` p { margin-top: 16px; text-align: center; color: orange; font-weight: bold; font-size: 24px; } `; export function builder() { return { root: <Hello />, stylesheet: helloStyle, } }