Merge pull request #36 from daily-demos/fix/import-order

Fixing import order; eslint fixes
This commit is contained in:
Kimberlee Johnson 2021-10-05 15:55:46 -07:00 committed by GitHub
commit 67d26cc3a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);