File tree Expand file tree Collapse file tree 4 files changed +158
-0
lines changed Expand file tree Collapse file tree 4 files changed +158
-0
lines changed Original file line number Diff line number Diff line change 3333 "react-router-dom" : " ^5.1.2" ,
3434 "react-scripts" : " 3.3.0" ,
3535 "react-slideshow-image" : " ^1.3.3" ,
36+ "react-twitter-embed" : " ^3.0.3" ,
3637 "semantic-ui-react" : " ^0.88.2"
3738 },
3839 "scripts" : {
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ import BlogList from './pages/Blogs/BlogList'
1818// import Codebadge from './pages/Codebadge/Codebadge';
1919import NavBar from './components/NavBar'
2020import Footer from './components/Footer'
21+ import TwitterFeeds from './components/TwitterFeeds/TwitterFeeds'
22+
2123// import Header from "./Header/header"
2224function App ( ) {
2325 return (
@@ -65,6 +67,7 @@ function App() {
6567
6668 </ Switch >
6769 </ BrowserRouter >
70+ < TwitterFeeds />
6871 < Footer />
6972 </ div >
7073 </ >
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import { TwitterTimelineEmbed } from 'react-twitter-embed' ;
3+ const TwitterFeeds = ( ) => {
4+ return (
5+ < div class = "container" style = { { justfyContent :"space-evenly" } } >
6+ < TwitterTimelineEmbed
7+ sourceType = "profile"
8+ screenName = "codeuino"
9+ />
10+ </ div >
11+ ) ;
12+ }
13+
14+ export default TwitterFeeds ;
You can’t perform that action at this time.
0 commit comments