Skip to content

Simple application starter with Reactive component and rxjs

Notifications You must be signed in to change notification settings

r-html/rhtml-component-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example

We have the following index.html

<script src="./main.ts"></script>

<app-component></app-component>

Lets check our main.ts file

Here we import our starter module called AppModule

import '@abraham/reflection';

import { Bootstrap } from '@rhtml/di';
import { AppModule } from './app/app.module';

Bootstrap(AppModule);

Our app.module.ts

import { Module } from "@rhtml/di";
import { SharedModule } from "@shared/shared.module";
import { AppComponent } from './app.component';

@Module({
  imports: [SharedModule],
  bootstrap: [AppComponent]
})
export class AppModule {}

About

Simple application starter with Reactive component and rxjs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published