Cleanup unused

This commit is contained in:
Nick Mowen 2023-05-20 10:08:27 -06:00
parent 0111c57ff0
commit 7a66ffc35b

View File

@ -1,13 +1,11 @@
import { h, Fragment } from 'preact';
import { useApiHost } from '../api';
import { h } from 'preact';
import Heading from '../components/Heading';
import { useCallback, useState } from 'preact/hooks';
import { useState } from 'preact/hooks';
import useSWR from 'swr';
import Button from '../components/Button';
import axios from 'axios';
export default function Export() {
const apiHost = useApiHost();
const { data: config } = useSWR('config');
const [camera, setCamera] = useState('select');