Home -> Index, styles

main
Jake Dexheimer 7 years ago
parent 90cbe0827c
commit d6da4c7e70

@ -3,10 +3,12 @@ import HTML5Backend from 'react-dnd-html5-backend'
import { DragDropContext } from 'react-dnd' import { DragDropContext } from 'react-dnd'
import Axios from 'axios' import Axios from 'axios'
import Meta from '../components/meta'
import Toolbar from '../components/toolbar'
import CodeImage from '../components/codeImage' import CodeImage from '../components/codeImage'
import api from '../lib/api' import api from '../lib/api'
class Home extends React.Component { class Index extends React.Component {
/* pathname, asPath, err, req, res */ /* pathname, asPath, err, req, res */
static async getInitialProps ({ asPath }) { static async getInitialProps ({ asPath }) {
try { try {
@ -19,23 +21,36 @@ class Home extends React.Component {
} }
render () { render () {
return ( return (
<div> <div className="main">
<Meta />
<h1>Welcome to Code Image</h1>
<div id="editor">
<Toolbar />
<CodeImage>
{this.props.content}
</CodeImage>
</div>
<style jsx>{` <style jsx>{`
h1 {
color: #fff;
}
div { div {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
#editor {
height: 460px;
background: #151515;
padding: 16px;
}
`} `}
</style> </style>
<h1>Welcome to Code Image</h1>
<CodeImage>
{this.props.content}
</CodeImage>
</div> </div>
) )
} }
} }
export default DragDropContext(HTML5Backend)(Home) export default DragDropContext(HTML5Backend)(Index)

Loading…
Cancel
Save