Skip to content

Commit

Permalink
REVERT ME - docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsongl committed Dec 3, 2021
1 parent 2cd26f6 commit 70dc65b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-docs/src/views/date_picker/date_picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from 'react';

import moment from 'moment';

import { EuiDatePicker, EuiFormRow } from '../../../../src/components';
import { EuiDatePicker, EuiToolTip } from '../../../../src/components';

export default () => {
const [startDate, setStartDate] = useState(moment());
Expand All @@ -12,8 +12,8 @@ export default () => {
};

return (
<EuiFormRow label="Select a date">
<EuiToolTip content="Select a date">
<EuiDatePicker selected={startDate} onChange={handleChange} />
</EuiFormRow>
</EuiToolTip>
);
};

0 comments on commit 70dc65b

Please sign in to comment.