import React from 'react';
function Spacer({ size = 12 }) {
return <div style={{ height: size }} />;
}
export default function App() {
return (
<div style={{ padding: 16 }}>
<strong>meetcode</strong>
<Spacer size={16} />
<button type='button' style={{ padding: '10px 14px', borderRadius: 12, border: 0, background: '#0b5', color: '#fff' }}>Start</button>
</div>
);
}
import React from 'react';
function Spacer({ size = 12 }) {
return <div style={{ height: size }} />;
}
export default function App() {
return (
<div style={{ padding: 16 }}>
<strong>meetcode</strong>
<Spacer size={16} />
<button type='button' style={{ padding: '10px 14px', borderRadius: 12, border: 0, background: '#0b5', color: '#fff' }}>Start</button>
</div>
);
}