nativous
v0.1.0
Published
The library for rendering JSX directly to the DOM.
Downloads
4
Readme
Nativous
Nativous is the library for rendering JSX directly to the DOM.
The name Nativous is a combination of Native and -ous, and it is pronounced /naˈti.vous/.
Installation
npm install nativous
Examples
function Hello({
name
}) {
return <p>Hello, {name}!</p>
}
document.body.appendChild(<Hello name="Taylor" />);
This example will render "Hello, Taylor!" into body of the page.