import React from 'react' import HTML5Backend from 'react-dnd-html5-backend' import { DragDropContext } from 'react-dnd' import Axios from 'axios' import Meta from '../components/meta' import Toolbar from '../components/toolbar' import CodeImage from '../components/codeImage' import api from '../lib/api' class Index extends React.Component { /* 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 (

Welcome to Code Image

{this.props.content}
) } } export default DragDropContext(HTML5Backend)(Index)