2019-01-13 16:44:57 +00:00
|
|
|
import Render from 'components/Render';
|
2019-01-26 22:25:38 +00:00
|
|
|
import layout from 'layout';
|
2019-01-13 16:44:57 +00:00
|
|
|
|
2019-01-26 21:36:43 +00:00
|
|
|
const parse = expr => {
|
|
|
|
return {
|
|
|
|
type: 'SVG',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
type: 'Text',
|
|
|
|
props: {
|
|
|
|
quoted: true
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
`PCRE => ${ expr }`
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
};
|
2019-01-13 16:44:57 +00:00
|
|
|
|
2019-01-26 21:36:43 +00:00
|
|
|
export {
|
|
|
|
parse,
|
2019-01-26 22:25:38 +00:00
|
|
|
layout,
|
2019-01-26 21:36:43 +00:00
|
|
|
Render
|
|
|
|
};
|