UNPKG

react-devdotto

Version:

> Embed your Posts on Dev.to into your React Project.

39 lines (28 loc) 563 B
# react-devdotto > Embed your Posts on Dev.to into your React Project. ## Demo: ### Create & install dependencies: ```bash create-react-app devdotto npm install --save react-devdotto ``` ### Edit scr/App.js: ```jsx import React from 'react'; import DevDotTo from 'react-devdotto'; import './App.css'; function App() { return ( <div className="App"> <DevDotTo username="genialkartik" /> </div> ); } export default App; ``` ### Run your App: ```bash npm start ``` ## License MIT © [genialkartik](https://github.com/genialkartik)