fbredius/storybook

View on GitHub
examples/cra-kitchen-sink/src/stories/fast-refresh.stories.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { FastRefreshExample } from '../components/FastRefreshExample';

export default {
  title: 'React Fast Refresh',
  component: FastRefreshExample,
};

export const Default = () => <FastRefreshExample />;