Skip to content

Instantly share code, notes, and snippets.

@gullinbursti
Created April 7, 2019 00:33
Show Gist options
  • Save gullinbursti/565a04db3ff403068fed4e8ff4cb0c77 to your computer and use it in GitHub Desktop.
Save gullinbursti/565a04db3ff403068fed4e8ff4cb0c77 to your computer and use it in GitHub Desktop.
Design Engine auto generated linted syntax v1
/**
* JSX Generator v1.0
* Code snippets by Design Engine.
* Made in Mountain View, CA.
**/ /* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
import React, { Component } from "react";
import './SignedOut.css';
import axios from 'axios';
import qs from 'qs';
import { Column, Row } from 'simple-flexbox';
const wrapper = React.createRef();
const Background = props => {
return (
<div className="background-wrapper">
<img
className="background-image"
src="./images/[email protected]"
alt="Background"
/>
</div>
)
}
const Mask = props => {
return (
<div className="mask-wrapper">
<img
className="mask-image"
src="./images/[email protected]"
alt="Mask"
/>
</div>
)
}
const Footer = props => {
return (
<div className="footer-wrapper">
<img
className="footer-image"
src="./images/[email protected]"
alt="Footer"
/>
</div>
)
}
class SignedOut extends Component {
constructor(props) {
super(props);
this.state = {}
}
render() {
return (
<div className="signedout">
<Background />
<Mask />
<Footer />
</div>
)
}
}
export default SignedOut;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment