1.4.0 • Published 4 years ago
@hackforplay/react-ast-mutator-components v1.4.0
React AST Mutator Components
Install
npm i -S @hackforplay/react-ast-mutator-components
React Project
import { RootComponent } from '@hackforplay/react-ast-mutator-components';
import { React, useState } from 'react';
export function MyComponent() {
const [code, setCode] = useState('let a = 1');
return <RootComponent code={code} onChange={value => setCode(value)} />;
}
Othe Framework
import { render } from '@hackforplay/react-ast-mutator-components';
let code = 'let a = 1';
update();
function update() {
render(
{
code,
onChange(value) {
code = value;
update();
}
},
document.body
);
}
1.4.0
4 years ago
1.3.0
5 years ago
1.2.8
6 years ago
1.2.7
6 years ago
1.2.6
6 years ago
1.2.5
6 years ago
1.2.4
6 years ago
1.2.3
6 years ago
1.2.2
6 years ago
1.2.1
6 years ago
1.2.0
6 years ago
1.1.6
6 years ago
1.1.5
6 years ago
1.1.4
6 years ago
1.1.3
6 years ago
1.1.2
6 years ago
1.1.1
6 years ago
1.1.0
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago