Skip to content

Commit

Permalink
fix: fix webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihor Arkhypenko authored and Ihor Arkhypenko committed Mar 5, 2020
1 parent 21ebeaf commit e98f2bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved */
import * as React from 'react';
import Tippy, { TippyProps } from '@tippy.js/react';
import 'tippy.js/dist/tippy.css';
import 'tippy.js/animations/shift-toward.css';
import 'tippy.js/dist/tippy.css?external';
import 'tippy.js/animations/shift-toward.css?external';

export const Tooltip: React.FC<TippyProps> = props => {
const { content, children, ...rest } = props;
Expand Down

0 comments on commit e98f2bf

Please sign in to comment.