- Dependencies
- Installation and Configuration
- Adding Syncfusion® packages
- Adding CSS Reference
- Adding RadioButton component to the Application
- Run the application
Contact Support
Getting Started
8 May 20253 minutes to read
This section explains how to create a simple RadioButton, and configure its available functionalities in React using React quickstart application.
Dependencies
The following list of dependencies are required to use the RadioButton component in your application.
|-- @syncfusion/ej2-react-buttons
|-- @syncfusion/ej2-react-base
|-- @syncfusion/ej2-base
|-- @syncfusion/ej2-buttons
Installation and Configuration
To easily set up a React application, use create-vite-app
, which provides a faster development environment, smaller bundle sizes, and optimized builds compared to traditional tools like create-react-app
. For detailed steps, refer to the Vite installation instructions. Vite sets up your environment using JavaScript and optimizes your application for production.
Note: To create a React application using
create-react-app
, refer to this documentation for more details.
To create a new React application, run the following command.
npm create vite@latest my-app
To set-up a React application in TypeScript environment, run the following command.
npm create vite@latest my-app -- --template react-ts
cd my-app
npm run dev
To set-up a React application in JavaScript environment, run the following command.
npm create vite@latest my-app -- --template react
cd my-app
npm run dev
Adding Syncfusion® packages
All the available Essential® JS 2 packages are published in npmjs.com
public registry.
To install RadioButton component, use the following command
npm install @syncfusion/ej2-react-buttons --save
Adding CSS Reference
Import the RadioButton component’s required CSS references as follows in src/App.css
.
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
Adding RadioButton component to the Application
To include the RadioButton component in your application import the RadioButtonComponent
from ej2-react-buttons
package in App.tsx
.
Add the RadioButton component in application as shown in below code example.
// Import the RadioButton.
import { RadioButtonComponent } from '@syncfusion/ej2-react-buttons';
import * as React from 'react';
import './App.css';
// To render RadioButton.
function App() {
return (<div style=>
<RadioButtonComponent label="default" />
</div>);
}
export default App;
Run the application
Now run the npm run dev
command in the console to start the development server. This command compiles your code and serves the application locally, opening it in the browser.
npm run dev
The following example shows a basic RadioButton component.
import { enableRipple } from '@syncfusion/ej2-base';
import { RadioButtonComponent } from '@syncfusion/ej2-react-buttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';
enableRipple(true);
// To render RadioButton.
function App() {
return (<ul>
<li><RadioButtonComponent label="Option 1" name="default"/></li>
<li><RadioButtonComponent label="Option 2" name="default"/></li>
</ul>);
}
export default App;
ReactDom.render(<App />, document.getElementById('radio-button'));
import { enableRipple } from '@syncfusion/ej2-base';
import { RadioButtonComponent } from '@syncfusion/ej2-react-buttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';
enableRipple(true);
// To render RadioButton.
function App() {
return (
<ul>
<li><RadioButtonComponent label="Option 1" name="default" /></li>
<li><RadioButtonComponent label="Option 2" name="default" /></li>
</ul>
);
}
export default App;
ReactDom.render(<App />, document.getElementById('radio-button'));
You can refer to our React Radio Button feature tour page for its groundbreaking feature representations. You can also explore our React Radio Button Example that shows you how to render the Radio Button in React.