amphtml-tsx
v1.1.1
Published
Transform tsx to AMP HTML string
Downloads
2
Maintainers
Readme
amphtml-tsx
Transform tsx to AMP HTML string
Setup
tsconfig.json
{
"compilerOptions": {
"jsx": "react",
"jsxFactory": "pragma"
}
}
Usage
import { pragma } from 'amphtml-tsx'
const renderToString = (name: string) => (
<div class="one two three">
<p id="line">
Hello, {name}!
</p>
</div>
)
console.log(renderToString('world'))
// => <div class="one two three"><p id="line">Hello, world!</p></div>