A simple library for using SolidJS components in AngularJS applications.
npm install solid2angularbash
npm install solid2angular
`
Usage
`typescript jsx
import {solid2angular} from "solid2angular";
function MyComponent(props: {binding1: any}) {
return {props.binding1};
}
app.component(
"myComponent",
solid2angular([], ["binding1"], props => {
return ;
}),
);
`
One thing to note is that the component will be rendered only once, and the props will be updated whenever the $onChanges` method is called.