LogoCode2Tech
BlogAbout

© 2024 Vedant Chaware & Siddhesh Shrirame

Any and all opinions listed here are our own and not representative of employers.

the_demon_sidVdcds
Source Code

Hello World

July 10, 2021the_demon_sid

This is a Demo Blog for the testing purposes

#Hello World

A checkbox is a square box that can be activated or deactivated when ticked. Use checkboxes to select one or more options from a list of choices.

javascript
import { Checkbox } from '@react-spectrum/checkbox';

function Example() {
  return <Checkbox>Label</Checkbox>;
}
jsx
<Checkbox>Label</Checkbox>
html
<input type="checkbox" id="checkbox" name="checkbox" value="checkbox">
<label for="checkbox">Label</label>

A checkbox is a square box that can be activated or deactivated when ticked.

Use checkboxes to select one or more options from a list of choices.

javascript
import { Checkbox } from '@react-spectrum/checkbox';

function Example() {
  return <Checkbox>Label</Checkbox>;
}
jsx
<Checkbox>Label</Checkbox>
html
<input type="checkbox" id="checkbox" name="checkbox" value="checkbox">
<label for="checkbox">Label</label>

#You can find more information on MDX documentation.

This is a paragraph with bold text and italic text.

  • [ ] This is a complete item
  • [ ] This is an incomplete item
  • [x] This is a complete item
  • First item
  • Second item
  • Third item
This is a link

This is a blockquote following a header. Siddhesh Rahul Shrriame

July 10, 2021the_demon_sid