<html>
<head>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div id="app">
<!-- Set the title to a String, episode number to a Number and published to Boolean -->
<props />
<!-- Using only defaults, show a title, episode number and published to false -->
<props />
<!-- The published field should accept a Number or a Boolean -->
<props />
<!-- Add new optional prop for visible, then hide the component, if false -->
<props />
</div>
<script src="index.pack.js"></script>
</body>
</html>