react-style-guide
Version:
A component to display React components with their JSX source in style guides
28 lines (25 loc) • 598 B
HTML
<html>
<head>
<title>React Style Guide Example</title>
<link rel="stylesheet" href="react-style-guide.css">
<style>
html {
color: #333;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
body {
margin: 0;
padding: 1.5em;
}
</style>
</head>
<body>
<p>
This is an example of React Style Guide.
For more information, see the repo on
<a href="https://github.com/alexlande/react-style-guide">GitHub</a>.
</p>
<div id="app"></div>
<script src="app.js"></script>
</body>
</html>