jpuri / react-draft-wysiwyg

A Wysiwyg editor build on top of ReactJS and DraftJS. https://jpuri.github.io/react-draft-wysiwyg
MIT License
6.41k stars 1.16k forks source link

How to start the item #695

Open LiboliboLibolibo opened 6 years ago

LiboliboLibolibo commented 6 years ago

I am load the item and then npm install. npm start not response. Whether the way of runing is wrong

juanlanus commented 5 years ago

I made a React project with create-react-app and edited App.js like so:

import React from 'react';
import { Editor } from 'react-draft-wysiwyg';
import '../node_modules/react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
import './App.css';

function App() {
  return (
        <Editor />
  );
}

export default App;