mirror of
https://github.com/Eugeny/tabby-web.git
synced 2026-08-17 14:56:03 +01:00
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
|
|
import { Component } from '@angular/core'
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'home-features',
|
||
|
|
templateUrl: './homeFeatures.component.pug',
|
||
|
|
styleUrls: ['./homeFeatures.component.scss'],
|
||
|
|
})
|
||
|
|
export class HomeFeaturesComponent {
|
||
|
|
screenshots = {
|
||
|
|
progress: require('../assets/screenshots/progress.png'),
|
||
|
|
zmodem: require('../assets/screenshots/zmodem.png'),
|
||
|
|
}
|
||
|
|
}
|