Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
change to header
Browse files Browse the repository at this point in the history
  • Loading branch information
mughees-asif committed Dec 8, 2019
1 parent 8f6efd1 commit 732c2cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>RoboFriends</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
11 changes: 11 additions & 0 deletions src/Scroll.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

const Scroll = (props) => {
return (
<div style={{overflowY:'scroll', border:'1px solid black', height:'600px'}}>
{props.children}
</div>
);
};

export default Scroll;

0 comments on commit 732c2cc

Please sign in to comment.