123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`MultipleCheckbox renders 1`] = `
- <MultipleCheckboxWrapper>
- <Box
- key="0"
- w={
- Array [
- 1,
- 0.5,
- 0.3333333333333333,
- 0.25,
- ]
- }
- >
- <Label>
- <input
- checked={false}
- onChange={[Function]}
- type="checkbox"
- value={0}
- />
- <CheckboxLabel>
- Choice A
- </CheckboxLabel>
- </Label>
- </Box>
- <Box
- key="1"
- w={
- Array [
- 1,
- 0.5,
- 0.3333333333333333,
- 0.25,
- ]
- }
- >
- <Label>
- <input
- checked={true}
- onChange={[Function]}
- type="checkbox"
- value={1}
- />
- <CheckboxLabel>
- Choice B
- </CheckboxLabel>
- </Label>
- </Box>
- <Box
- key="2"
- w={
- Array [
- 1,
- 0.5,
- 0.3333333333333333,
- 0.25,
- ]
- }
- >
- <Label>
- <input
- checked={false}
- onChange={[Function]}
- type="checkbox"
- value={2}
- />
- <CheckboxLabel>
- Choice C
- </CheckboxLabel>
- </Label>
- </Box>
- </MultipleCheckboxWrapper>
- `;
|