Created
January 7, 2018 01:33
-
-
Save josephmaxim/b04dea9649cb617ac1e8dc4e6d1bf918 to your computer and use it in GitHub Desktop.
Skewed Container Example
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
// App.js | |
import React, { Component } from 'react'; | |
import './App.css'; | |
import SkewedContainer from 'sc-react'; | |
class App extends Component { | |
render() { | |
return ( | |
<div> | |
<SkewedContainer bottom="left" bgColor="#ffffff" noMargin> | |
<div className="container"> | |
<h1>Skewed Container Example</h1> | |
</div> | |
</SkewedContainer> | |
<div className="bg-image1"> | |
<div className="container"> | |
<h2>Content Here</h2> | |
</div> | |
</div> | |
<SkewedContainer top="left" bottom="left" bgColor="#ffffff" noMargin> | |
<div className="container"> | |
<h2>More Content Here</h2> | |
</div> | |
</SkewedContainer> | |
<div className="bg-image2"> | |
<div className="container"> | |
<h2>Even More Content Here</h2> | |
</div> | |
</div> | |
<SkewedContainer top="left" bgColor="#ffffff" noMargin> | |
<div className="container"> | |
<h2>This Is The Footer Content</h2> | |
</div> | |
</SkewedContainer> | |
</div> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment