Skip to content

Commit

Permalink
fix: remove explicit .tsx imports that break package
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed Apr 18, 2024
1 parent d147e40 commit bc1b6fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/Slider.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef, ReactNode } from "react";
import Icon from "../core/Icon.tsx";
import Icon from "./Icon";
import "./Slider/component.css";

interface SliderProps {
Expand Down
4 changes: 2 additions & 2 deletions src/core/Slider/Slider.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import Slider from "../Slider.tsx";
import Icon from "../Icon.tsx";
import Slider from "../Slider";
import Icon from "../Icon";

const Slide = ({ name }: { name: string }) => (
<div className="relative ">
Expand Down

0 comments on commit bc1b6fe

Please sign in to comment.