Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 542 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 542 Bytes

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.