Skip to content

Instantly share code, notes, and snippets.

@jasonfesta
Created April 18, 2019 23:28
Show Gist options
  • Select an option

  • Save jasonfesta/51dbf7fb959b3d0dbb0ba9cea2579220 to your computer and use it in GitHub Desktop.

Select an option

Save jasonfesta/51dbf7fb959b3d0dbb0ba9cea2579220 to your computer and use it in GitHub Desktop.
Design Engine auto generated syntax v1
/**
* JSX Generator v1.0
* Code snippets by Design Engine.
* Made in Mountain View, CA.
**//* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
import React, { Component } from 'react';
import './03Home-ReadRelease.css';
import axios from 'axios';
import qs from 'qs'
import { Column, Row } from 'simple-flexbox';
const wrapper = React.createRef();
const MenuBar = (props)=> {
return (<div className="menu-bar-wrapper">
<img className="menu-bar-image" src="./images/[email protected]" alt="Menu Bar" />
</div>);
};
const Background = (props)=> {
return (<div className="background-wrapper">
<img className="background-image" src="./images/[email protected]" alt="Background" />
</div>);
};
const Title = (props)=> {
return (<div className="title-wrapper">
<div className="title-text">Blog Article Title</div>
</div>);
};
class 03Home-ReadRelease extends Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (<div className="03home-readrelease">
<MenuBar />
<Background />
<Title />
</div>);
}
}
export default 03Home-ReadRelease;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment