mirror of
https://github.com/helix-editor/helix
synced 2026-08-07 03:04:19 +02:00
13 lines
376 B
React
13 lines
376 B
React
function App() {
|
|
// ^ @constructor
|
|
const name = greet("x");
|
|
// ^ @variable
|
|
// ^ @function
|
|
return <div className="box"><Widget count={name} /></div>;
|
|
// ^ @tag
|
|
// ^ @attribute
|
|
// ^ @constructor
|
|
// ^ @attribute
|
|
// ^ @variable
|
|
}
|