Skip to content

Commit

Permalink
import scss files to components
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSax committed Dec 2, 2023
1 parent a5f5898 commit 5d8bdd1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/CommentInfo/CommentInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './CommentInfo.scss';
import { Comment } from '../../types/Comment';

type Props = {
Expand Down
1 change: 1 addition & 0 deletions src/components/CommentList/CommentList.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import './CommentList.scss';
import React from 'react';
import { CommentInfo } from '../CommentInfo';
import { Comment } from '../../types/Comment';
Expand Down
1 change: 1 addition & 0 deletions src/components/PostInfo/PostInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './PostInfo.scss';
import { UserInfo } from '../UserInfo';
import { CommentList } from '../CommentList';
import { Post } from '../../types/Post';
Expand Down
1 change: 1 addition & 0 deletions src/components/PostList/PostList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './PostList.scss';
import { PostInfo } from '../PostInfo';
import { Post } from '../../types/Post';

Expand Down
1 change: 1 addition & 0 deletions src/components/UserInfo/UserInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './UserInfo.scss';
import { User } from '../../types/User';

type Props = {
Expand Down

0 comments on commit 5d8bdd1

Please sign in to comment.