Skip to content

Commit

Permalink
fix: combine imports
Browse files Browse the repository at this point in the history
Looks like useState and Suspense were decoupled.
  • Loading branch information
ajmarvingomez committed Apr 3, 2024
1 parent 2c8f1b3 commit 64c79ed
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/tool/canvassr/Tabs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import CanvassForm from './CanvassForm';
import ImportCSV from './ImportCSV';
import ExportCSV from './ExportCSV';
import H2 from '../../ui/typography/H2';
import { useState } from 'react';

import { Suspense } from 'react';
import { useState, Suspense } from 'react';

export default function Tabs({ children, ...props }) {
const [activeTab, setActiveTab] = useState('Entries');
Expand Down

0 comments on commit 64c79ed

Please sign in to comment.