Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created January 16, 2019 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/fa7ff465be7068b0b134a031a2384b73 to your computer and use it in GitHub Desktop.
Save luandevpro/fa7ff465be7068b0b134a031a2384b73 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
import Draft from "../components/Draft";
import Context from "../contexts";
export default class DraftContainer extends Component {
static contextType = Context;
render() {
return (
<div>
<Draft />
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment