Implement TimezonePicker component
This commit is contained in:
@@ -9,7 +9,7 @@ import {
|
||||
Button,
|
||||
} from 'rsuite';
|
||||
|
||||
import TzDropdown from '../components/General/TimezonesCascader';
|
||||
import TimezonePicker from '../components/General/TimezonePicker';
|
||||
|
||||
const boxStyle = {
|
||||
maxWidth: 373,
|
||||
@@ -43,7 +43,7 @@ export default function Register() {
|
||||
/>
|
||||
</FormGroup>
|
||||
<FormGroup>
|
||||
<TzDropdown />
|
||||
<TimezonePicker />
|
||||
</FormGroup>
|
||||
<FormGroup>
|
||||
<FormControl
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
import TzDropdown from '../components/General/TimezonesCascader';
|
||||
import TimezonePicker from '../components/General/TimezonePicker';
|
||||
import { Container, Form, FormControl, FormGroup, Input } from 'rsuite';
|
||||
|
||||
export default function Schedule() {
|
||||
return (
|
||||
<Container>
|
||||
<h3>Schedule a meeting</h3>
|
||||
<Form horizontal>
|
||||
<Form>
|
||||
<FormGroup>
|
||||
<FormControl name='title' type='text' placeholder='title' />
|
||||
</FormGroup>
|
||||
@@ -21,7 +21,7 @@ export default function Schedule() {
|
||||
/>
|
||||
</FormGroup>
|
||||
<FormGroup>
|
||||
<TzDropdown />
|
||||
<TimezonePicker />
|
||||
</FormGroup>
|
||||
</Form>
|
||||
</Container>
|
||||
|
||||
Reference in New Issue
Block a user