A stories webcomponent with friendly navigation.
Follows the open-wc recommendation.
user-story.mp4
npm i user-story
<script type="module">
import 'user-story/user-story.js';
</script>
<user-story .stories="${stories}"></user-story>
npm start
To run a local development server that serves the basic demo located in demo/index.html
To scan the project for linting errors, run
npm run lint
You can lint with ESLint and Prettier individually as well
npm run lint:eslint
npm run lint:prettier
To automatically fix many linting errors, run
npm run format
You can format using ESLint and Prettier individually as well
npm run format:eslint
npm run format:prettier