Skip to content

Instantly share code, notes, and snippets.

@cindywu
Created January 6, 2023 19:23
Show Gist options
  • Save cindywu/68d78d83654f61e01ea1a88a9fb6b068 to your computer and use it in GitHub Desktop.
Save cindywu/68d78d83654f61e01ea1a88a9fb6b068 to your computer and use it in GitHub Desktop.
react components nesting components
<!-- index.html -->
<html>
<body>
<div>
<div id="app">
</div>
<script src="https://unpkg.com/react@17/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/jsx">
const app = document.getElementById('app')
function Header() {
return (<h1>Develop. Preview. Ship. 🚀</h1>)
}
function HomePage() {
return (
<div>
<Header />
</div>
)
}
ReactDOM.render(<HomePage/>, app)
</script>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment