next.js/test/integration/plugin-mdx-rs/components/button.js
button.js15 lines258 B
export default ({ children }) => (
  <button
    style={{
      borderRadius: '3px',
      border: '1px solid black',
      color: 'black',
      padding: '0.5em 1em',
      cursor: 'pointer',
      fontSize: '1.1em',
    }}
  >
    {children}
  </button>
)
Quest for Codev2.0.0
/
SIGN IN