mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
28 lines
407 B
JavaScript
28 lines
407 B
JavaScript
var Button = () => {
|
|
return <div className="button">Button!</div>;
|
|
};
|
|
|
|
var Bar = () => {
|
|
return (
|
|
<div prop={1}>
|
|
Plain text
|
|
<div>
|
|
← A child div
|
|
<Button>Red</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
var Triple = () => {
|
|
return (
|
|
<div prop={1}>
|
|
Plain text
|
|
<div>
|
|
← A child div
|
|
<Button>Red</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|