Skip to content

Commit

Permalink
some commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna Tuhusova committed Dec 15, 2024
1 parent a563619 commit 019b7fd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import './components/Page/Page.css';
import Welcome from './components/Welcome/Welcome.jsx';
import Header from './components/Header/Header.jsx';
import Article from './components/Article/Article.jsx';
import './components/Page/Page.scss';
import Welcome from './components/Welcome/Welcome';
import Header from './components/Header/Header';
import Article from './components/Article/Article';
// Move each BEM block to a separate component (file) and import them here

function App() {
Expand All @@ -16,3 +16,4 @@ function App() {
}

export default App;

2 changes: 1 addition & 1 deletion src/components/Article/Article.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import a css file containig article styles
import './Article.css';
import './Article.scss';

// Create an Article function returning the HTML of article block
function Article() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import a css file containig header styles
import './Header.css';
import './Header.scss';

// Create a Header function returning the HTML of header block
function Header() {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Welcome/Welcome.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import a css file containig welcome styles
import './Welcome.css';
import './Welcome.scss';

// Create a Welcome function returning the HTML of welcome block
function Welcome() {
Expand Down
File renamed without changes.

0 comments on commit 019b7fd

Please sign in to comment.