Skip to content

kolodny/babel-plugin-mjsx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

babel-plugin-mjsx

Mithril precompilation JSX plugin for babel

Example output:

let a = {t: 1};
let KK = <div style="1" {...a}><Component foo="bar">Component children</Component></div>;

Transpiled:

var a = { t: 1 };
	var KK = {
		tag: 'div',
		children: [m.component(Component, {
			foo: 'bar'
		}, ['Component children'])],
		attrs: babelHelpers._extends({
			style: '1'
		}, a)
	};

About

Mithril precompilation JSX plugin for babel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%