An open API service indexing awesome lists of open source software.

https://github.com/lacolaco/ngx-react

Use React elements with Angular
https://github.com/lacolaco/ngx-react

angular frontend react reactive-programming typescript

Last synced: 9 months ago
JSON representation

Use React elements with Angular

Awesome Lists containing this project

README

          

# NgxReact

**Work in Progress**

```typescript
@Component({
template: `

`
})
class SimpleComponent {
// Create React element
element =

Test Element
;
}
```

```typescript
@Component({
template: `

`
})
class ReactiveComponent {
// Update element when message changed
message$ = this.messageService.message$.pipe(
map(message =>

{message}
)
);
}
```