@southsystem/layout
TypeScript icon, indicating that this package has built-in type declarations

0.6.0 • Public • Published

Create new project

ng new --routing --style=scss project-name
cd project-name
# install southsystem packages
npm i @southsystem/styles
npm i @southsystem/layout 
# install fontawsome packages
npm i @fortawesome/angular-fontawesome 
npm i @fortawesome/fontawesome-free 
npm i @fortawesome/fontawesome-svg-core 
npm i @fortawesome/free-solid-svg-icons

file: src/app/app.component.html

<router-outlet></router-outlet>

file: src/app/app.module.ts

@NgModule({
  imports: [
    SSTLayoutModule,
  ]
})

file: src/app/app-routing.module.ts

// ...
import { SSTFullLayoutComponent } from '@southsystem/layout';

const routes: Routes = [
  {
    path: '',
    component: SSTFullLayoutComponent
  }
];

@NgModule({
  imports: [
    RouterModule.forRoot(routes)
  ]
})
// ...

file: src/styles.scss

@import "~@southsystem/styles/southsystem";

Package Sidebar

Install

npm i @southsystem/layout

Weekly Downloads

2

Version

0.6.0

License

MIT

Unpacked Size

534 kB

Total Files

56

Last publish

Collaborators

  • arielpchara