24 lines
301 B
JavaScript
24 lines
301 B
JavaScript
import Render from 'components/Render';
|
|
|
|
const parse = expr => {
|
|
return {
|
|
type: 'SVG',
|
|
children: [
|
|
{
|
|
type: 'Text',
|
|
props: {
|
|
quoted: true
|
|
},
|
|
children: [
|
|
`JS => ${ expr }`
|
|
]
|
|
}
|
|
]
|
|
};
|
|
};
|
|
|
|
export {
|
|
parse,
|
|
Render
|
|
};
|