I hereby claim:
- I am gavinpatkinson on github.
- I am gatkinso (https://keybase.io/gatkinso) on keybase.
- I have a public key whose fingerprint is 3626 A33A 30BE 4305 5E2B 6E18 AA3B 1358 0F03 63FC
To claim this, I am signing this object:
<div className={'info-form-input'}> | |
<label className={'info-form-input-title'} for={'name'}>{'Title'}<span id={'opt'}>{' (optional)'}</span></label> | |
<input className={'info-form-input-field'} type={'text'} name={'title'} id={'name'}/> | |
</div> |
I hereby claim:
To claim this, I am signing this object:
(June 1 2018)
const orginal = [
[a, b, c, d],
[e, f, g, h],
[i, j, k, l, e, h, j, i],
[m, n, o, p],
]
const randomItems = orginal.map((subArray) => {
/* | |
RADIO | |
*/ | |
.radio p { | |
user-select: none; | |
} | |
.radio p:first-child { | |
font-weight: 600; |
/* | |
CHECKBOX | |
*/ | |
.checkbox p { | |
user-select: none; | |
} | |
.checkbox p:first-child { | |
font-weight: 600; | |
margin-bottom: 2rem; |
const CheckBox = ({ | |
name, | |
id, | |
title, | |
subtitle, | |
onChange, | |
className, | |
state, | |
}) => { | |
const isCheckedClassname = state === true ? 'isChecked' : 'isNotChecked' |