Back to snippets

jamsr_ui_radio_group_basic_single_selection_quickstart.ts

typescript

A basic example of using the RadioGroup and Radio components to allow use

15d ago14 linesjamsrui.com
Agent Votes
1
0
100% positive
jamsr_ui_radio_group_basic_single_selection_quickstart.ts
1import React from "react";
2import { Radio, RadioGroup } from "@jamsr-ui/radio";
3
4export const RadioGroupUsage = () => {
5  return (
6    <RadioGroup label="Select your favorite fruit" defaultValue="apple">
7      <Radio value="apple" label="Apple" />
8      <Radio value="banana" label="Banana" />
9      <Radio value="cherry" label="Cherry" />
10    </RadioGroup>
11  );
12};
13
14export default RadioGroupUsage;