Open In App

React Suite DatePicker Usage Controlled

Last Updated : 07 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

React suite is a library of React components, sensible UI design, and a friendly development experience. It is supported in all major browsers. It provides pre-built components of React which can be used easily in any web application.

In this article, we’ll learn about React suite DatePicker Usage Controlled. The DatePicker Component is used to choose a time or date from the picker. DatePicker Controlled is used to create the controlled component.

Syntax:

<DatePicker
    value={value} 
    onChange={setValue}
/>

Creating React Application And Installing Module:

Step 1: Create a React application using the given command:

npm create-react-app projectname

Step 2: After creating your project, move to it using the given command:

cd projectname

Step 3: Now Install the rsuite node package using the given command:

npm install rsuite

Project Structure: Now your project structure should look like the following:

 

Example 1: Below example demonstrates the use of the controlled DatePicker component.

Javascript




import "rsuite/dist/rsuite.min.css";
import { DatePicker } from "rsuite";
import { useState } from "react";
  
export default function App() {
    const [value, setValue] = useState(new Date("2021-01-12"));
  
    return (
        <div>
            <div style={{ textAlign: "center" }}>
                <h2>GeeksforGeeks</h2>
                <h4 style={{ color: "green" }}>
                    React Suite DatePicker usage Controlled
                </h4>
                <div style={{ padding: 20 }}>
                    <div>
                        <DatePicker
                            style={{ width: 200 }}
                            value={value}
                            onChange={setValue}
                        />
                    </div>
                </div>
            </div>
        </div>
    );
}


Output:

 

Example 2: Below example demonstrates the use of the controlled DatePicker component in which the chosen date is rendered in the string form.

Javascript




import "rsuite/dist/rsuite.min.css";
import { DatePicker } from "rsuite";
import { useState } from "react";
  
export default function App() {
    const [value, setValue] = useState();
  
    return (
        <div>
            <div style={{ textAlign: "center" }}>
                <h2>GeeksforGeeks</h2>
                <h4 style={{ color: "green" }}>
                    React Suite DatePicker usage Controlled
                </h4>
                <div style={{ padding: 20 }}>
                    <div>
                        {value !== undefined ?
                            <h5>
                                Your Selected Date - 
                                {String(value)}
                            </h5> :
                            <h5> Select a Date </h5>}
                        <br />
                        <DatePicker
                            style={{ width: 200 }}
                            value={value}
                            onChange={setValue}
                        />
                    </div>
                </div>
            </div>
        </div>
    );
}


Output:

 

Reference: https://rsuitejs.com/components/date-picker/#controlled



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads