├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── example ├── _app.css ├── app.js ├── single.json └── tweets.json ├── index.html ├── index.js ├── package.json ├── react-tweet-demo.png ├── src └── components │ └── Tweet │ ├── Context.js │ ├── Footer.js │ ├── Header.js │ ├── Media.js │ ├── Modal.js │ ├── Photos.js │ ├── Quote.js │ ├── Text.js │ ├── Tweet.js │ ├── Video.js │ ├── styles.js │ └── utils.js ├── tweet.png └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/README.md -------------------------------------------------------------------------------- /example/_app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/example/_app.css -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/example/app.js -------------------------------------------------------------------------------- /example/single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/example/single.json -------------------------------------------------------------------------------- /example/tweets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/example/tweets.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/package.json -------------------------------------------------------------------------------- /react-tweet-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/react-tweet-demo.png -------------------------------------------------------------------------------- /src/components/Tweet/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Context.js -------------------------------------------------------------------------------- /src/components/Tweet/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Footer.js -------------------------------------------------------------------------------- /src/components/Tweet/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Header.js -------------------------------------------------------------------------------- /src/components/Tweet/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Media.js -------------------------------------------------------------------------------- /src/components/Tweet/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Modal.js -------------------------------------------------------------------------------- /src/components/Tweet/Photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Photos.js -------------------------------------------------------------------------------- /src/components/Tweet/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Quote.js -------------------------------------------------------------------------------- /src/components/Tweet/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Text.js -------------------------------------------------------------------------------- /src/components/Tweet/Tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Tweet.js -------------------------------------------------------------------------------- /src/components/Tweet/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/Video.js -------------------------------------------------------------------------------- /src/components/Tweet/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/styles.js -------------------------------------------------------------------------------- /src/components/Tweet/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/src/components/Tweet/utils.js -------------------------------------------------------------------------------- /tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/tweet.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/react-tweet/HEAD/webpack.config.js --------------------------------------------------------------------------------