diff --git a/src/pages/saju/_shell/GhostButton.jsx b/src/pages/saju/_shell/GhostButton.jsx new file mode 100644 index 0000000..1a13fb0 --- /dev/null +++ b/src/pages/saju/_shell/GhostButton.jsx @@ -0,0 +1,18 @@ +import React from 'react'; +import hexA from './helpers/hexA'; + +export default function GhostButton({ + children, color = '#1F2A44', onClick, full = true, style = {}, type = 'button', +}) { + return ( + + ); +} diff --git a/src/pages/saju/_shell/InputRow.jsx b/src/pages/saju/_shell/InputRow.jsx new file mode 100644 index 0000000..ce7402a --- /dev/null +++ b/src/pages/saju/_shell/InputRow.jsx @@ -0,0 +1,32 @@ +import React from 'react'; + +export default function InputRow({ + label, name, type = 'text', value, onChange, placeholder, error, children, +}) { + return ( +