Last active
August 17, 2020 18:41
-
-
Save sabesansathananthan/17a4c245fd8ab2b83cfa51deeca3ddc6 to your computer and use it in GitHub Desktop.
Embed a blog on your React Website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Slider from './Slider'; | |
import { Col } from 'shards-react'; | |
function App() { | |
return ( | |
<React.Fragment> | |
<Col xs="12" sm="4" className="text-sm-left text-center text-md-left mb-sm-0"> | |
<span className="text-uppercase page-subtitle">Components</span> | |
<h3 className="page-title">Posts</h3> | |
</Col> | |
<Slider /> | |
</React.Fragment> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment