You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/pages/index.js

42 lines
935 B
JavaScript

7 years ago
import React from 'react'
import HTML5Backend from 'react-dnd-html5-backend'
import { DragDropContext } from 'react-dnd'
7 years ago
import Axios from 'axios'
import CodeImage from '../components/codeImage'
7 years ago
import api from '../lib/api'
7 years ago
class Home extends React.Component {
7 years ago
/* pathname, asPath, err, req, res */
static async getInitialProps ({ asPath }) {
try {
const content = await api.getGist(asPath)
return { content }
} catch (e) {
console.log(e)
return {}
}
}
render () {
return (
<div>
<style jsx>{`
div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
`}
</style>
<h1>Welcome to Code Image</h1>
<CodeImage>
{this.props.content}
7 years ago
</CodeImage>
</div>
)
}
7 years ago
}
export default DragDropContext(HTML5Backend)(Home)