├── .travis.yml
├── src
├── .eslintrc
├── up.png
├── test.js
├── components
│ ├── ProgressWrapper.js
│ ├── SeeMore.js
│ ├── Header.js
│ ├── ProgressArray.js
│ ├── Progress.js
│ ├── Story.js
│ └── Container.js
├── index.js
└── styles.css
├── .babelrc
├── .editorconfig
├── ghpage
├── README.md
├── src
│ ├── index.js
│ ├── SeeMoreForm.js
│ ├── index.css
│ └── App.js
├── public
│ ├── manifest.json
│ └── index.html
└── package.json
├── .gitignore
├── .eslintrc
├── rollup.config.js
├── LICENSE
├── package.json
└── README.md
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 9
4 | - 8
5 |
--------------------------------------------------------------------------------
/src/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "jest": true
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/src/up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/reactrondev/react-stories/HEAD/src/up.png
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["env", {
4 | "modules": false
5 | }],
6 | "stage-0",
7 | "react"
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/src/test.js:
--------------------------------------------------------------------------------
1 | import ExampleComponent from './'
2 |
3 | describe('ExampleComponent', () => {
4 | it('is truthy', () => {
5 | expect(ExampleComponent).toBeTruthy()
6 | })
7 | })
8 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/ghpage/README.md:
--------------------------------------------------------------------------------
1 | # @reactrondev/react-stories
2 |
3 | This is a demo implementing `@reactrondev/react-stories` component. See it in action here: [](https://reactrondev.github.io/@reactrondev/react-stories/)
--------------------------------------------------------------------------------
/ghpage/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom'
3 |
4 | import './index.css'
5 | import App from './App'
6 |
7 | ReactDOM.render(
{heading}
9 |{subheading}
10 | 11 |@reactrondev/react-storiesCreate Instagram like stories on the web using React
13 |npm i @reactrondev/react-stories
15 | Made with ♥ by @reactrondev
17 |◀ Tap left for previous story
19 |▶︎ Tap right for next story
20 |◉ Press and hold to pause
Version [V1.0.0]
24 |1. The version was forked from https://www.npmjs.com/package/react-insta-stories
25 |Know more about us here: https://reactron.dev
28 |