Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Sep 9, 2024
1 parent dccb71d commit 7a9161e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Results from './Results';
import Table from './Table';
import usePersistence, { upload } from './usePersistence';
import { copyLink, downloadFile, saveStateLocal } from './util';
import usePersistence from './usePersistence';
import { copyLink, saveStateLocal } from './util';
import voha from './voha.jpg';

export default function App() {
const { state, select, mark, note, setState } = usePersistence();
const { state, select, mark, note } = usePersistence();

return (
<>
Expand Down

0 comments on commit 7a9161e

Please sign in to comment.