create-react-native-library
Version:
CLI to scaffold React Native libraries
26 lines (24 loc) • 444 B
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<style>
html,
body {
height: 100%;
}
#root {
display: flex;
height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./index.js"></script>
</body>
</html>