Skip to content

Instantly share code, notes, and snippets.

@hadijahkyampeire
Created March 19, 2020 22:37
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 hadijahkyampeire/474d29201df30aafc2c4565c79bb31ac to your computer and use it in GitHub Desktop.
Save hadijahkyampeire/474d29201df30aafc2c4565c79bb31ac to your computer and use it in GitHub Desktop.
Our App file
import React from 'react';
import { MyEditor } from './components/myEditor';
import './App.css'
import '../node_modules/react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
function App() {
return (
<div className="app">
<MyEditor />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment