1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-06-16 13:46:16 +02:00

Merge branch 'no-babel' into 'dev'

No babel

See merge request turris/reforis/foris-js!64
This commit is contained in:
Bogdan Bodnar
2020-01-07 11:12:17 +01:00
17 changed files with 955 additions and 615 deletions

View File

@ -6,8 +6,8 @@
*/
import React from "react";
import PropTypes from "prop-types";
import { Input } from "./Input";
export const EmailInput = ({ ...props }) => <Input type="email" {...props} />;

View File

@ -8,8 +8,8 @@
import React, { useRef } from "react";
import PropTypes from "prop-types";
import { Portal } from "utils/Portal";
import { useClickOutside } from "utils/hooks";
import { Portal } from "../utils/Portal";
import { useClickOutside } from "../utils/hooks";
Modal.propTypes = {
/** Is modal shown value */

View File

@ -8,7 +8,7 @@
import React from "react";
import PropTypes from "prop-types";
import { useConditionalTimeout } from "utils/hooks";
import { useConditionalTimeout } from "../utils/hooks";
import { Input } from "./Input";
import "./NumberInput.css";