Fixing import order; eslint fixes

This commit is contained in:
Kimberlee Johnson 2021-10-05 15:52:25 -07:00
parent c5db18ce5c
commit c56c15c8b5
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,4 @@
import DailyIframe from '@daily-co/daily-js';
import { useCallback, useEffect, useRef, useState } from 'react';
import { writeText } from 'clipboard-polyfill';
import Button from '@custom/shared/components/Button';
import {
Card,
@ -9,6 +7,8 @@ import {
CardFooter,
} from '@custom/shared/components/Card';
import { TextInput } from '@custom/shared/components/Input';
import DailyIframe from '@daily-co/daily-js';
import { writeText } from 'clipboard-polyfill';
import ExpiryTimer from '../components/ExpiryTimer';
const CALL_OPTIONS = {

View File

@ -1,6 +1,6 @@
import React, { useState } from 'react';
import Well from '@custom/shared/components/Well';
import Button from '@custom/shared/components/Button';
import Well from '@custom/shared/components/Well';
export function CreateRoomButton({
isConfigured,

View File

@ -6,9 +6,9 @@ import {
CardHeader,
CardFooter,
} from '@custom/shared/components/Card';
import CreateRoomButton from './CreateRoomButton';
import Field from '@custom/shared/components/Field';
import { TextInput } from '@custom/shared/components/Input';
import CreateRoomButton from './CreateRoomButton';
export const Home = ({ setRoom, setExpiry, isConfigured }) => {
const roomRef = useRef(null);