UNPKG
r-number
Version:
latest (0.0.2)
0.0.2
0.0.1
0.0.0
Convert Number to Roman Number foramt in your angular app with this npm package
r-number
/
src
/
app
/
app-routing.module.ts
11 lines
(8 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ NgModule } from
'@angular/core'
;
import
{ Routes, RouterModule } from
'@angular/router'
;
const
routes: Routes = [];
@NgModule({ imports: [RouterModule.forRoot(routes)], exports: [RouterModule] })
export
class
AppRoutingModule
{ }