Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/.DS_Store
Binary file not shown.
17 changes: 10 additions & 7 deletions src/components/App.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import React, {Component, useState} from "react";
import '../styles/App.css';

import React from "react";
import "../styles/App.css";
import Comp1 from "./Comp1";
import Comp2 from "./Comp2";
const App = () => {
return (
<></>
)
}

<>
<Comp1 />
<Comp2 />
</>
);
};

export default App;
13 changes: 13 additions & 0 deletions src/components/Comp1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";
import "../styles/App.css";

const Comp1 = () => {
return (
<>
<h1>Online Learning </h1>
<h3>This project is about provide onlile learning material</h3>
</>
);
};

export default Comp1;
16 changes: 16 additions & 0 deletions src/components/Comp2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import "../styles/App.css";

const Comp2 = () => {
return (
<>
<h1>Nwes Website</h1>
<h3>
This project is about provide live news to tall the users based on their
favourite section(Sports,Bollywood,Politics).
</h3>
</>
);
};

export default Comp2;