Merge pull request #36 from daily-demos/fix/import-order
Fixing import order; eslint fixes
This commit is contained in:
commit
67d26cc3a3
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue