Skip to content

Commit

Permalink
Fix broken imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Temzasse committed May 11, 2024
1 parent da85e43 commit 9b7f54a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/components/ScrollableSnapPoints.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import styled from 'styled-components';
import Sheet, { SheetRef } from 'react-modal-sheet';
import { Sheet, SheetRef } from 'react-modal-sheet';

import { Button } from './common';

Expand Down
2 changes: 1 addition & 1 deletion test/react-modal-sheet.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test } from 'vitest';
import { createRoot } from 'react-dom/client';
import React from 'react';

import Sheet from '../src';
import { Sheet } from '../src';

test('renders without crashing', () => {
const root = createRoot(document.createElement('div'));
Expand Down
2 changes: 1 addition & 1 deletion test/ssr.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { test, expect } from 'vitest';
import { renderToString } from 'react-dom/server';
import React from 'react';

import Sheet from '../src';
import { Sheet } from '../src';

test('renders Sheet in HTML output', () => {
const content = 'Hello world';
Expand Down

0 comments on commit 9b7f54a

Please sign in to comment.