Skip to content

Commit

Permalink
reverted to css import
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardomcv committed Jul 19, 2020
1 parent 8b1ad40 commit a7d601c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/LocationSelector/LocationSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { FunctionComponent, ChangeEventHandler } from 'react';
import './LocationSelector.scss';
import './LocationSelector.css';
import { Location } from '../../sharedTypes';

interface LocationSelectorProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/MainContent/MainContent.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { FunctionComponent, useState } from 'react';
import LocationSelector from '../LocationSelector';
import { TemperatureUnit, Location } from '../../sharedTypes';
import './MainContent.scss';
import './MainContent.css';

const MainContent: FunctionComponent = () => {
const [location, setLocation] = useState<Location>('lisbon');
Expand Down

0 comments on commit a7d601c

Please sign in to comment.