This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.tsx
More file actions
31 lines (29 loc) · 1.48 KB
/
default.tsx
File metadata and controls
31 lines (29 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
import { SampleBase } from '../common/sample-base';
import './daterangepicker-component.css';
export class Default extends SampleBase<{}, {}> {
render() {
return (
<div className='control-pane'>
<div className='control-section'>
<div className='daterangepicker-control-section'>
<DateRangePickerComponent></DateRangePickerComponent>
</div>
</div>
<div id="action-description">
<p>
The following sample demonstrates the default functionalities of the DateRangePicker.Select a date range from the popup calendar and the selected <code>date range</code> will be displayed in the DateRangePicker element.</p>
</div>
<div id='description'>
<p>
<code>DateRangePicker</code> is an interactive component that allows the user to select a range from the calendar, or to set a range value.
</p>
<p>More information on the DateRangePicker instantiation can be found in the
<a href="https://ej2.syncfusion.com/react/documentation/daterangepicker/getting-started.html" target="_blank"> documentation section</a>.</p>
</div>
</div>
)
}
}