Plasmatic is a full featured framework for polymorphic applications.
$ yarn add plasmatic babel-plugin-transform-plasmatic-jsx
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>Plasmatic App</title>
</head>
<body>
<div pm-component="plasmatic-app"></div>
</body>
</html>
import Plasmatic from 'plasmatic'
const App = new Plasmatic.App('plasmatic-app')
App.render(
<div>
<h1>Plasmatic Application</h1>
</div>
)
- Milos Mosovsky (@MilosMosovsky)