2022-11-03 15:05:26 +01:00
|
|
|
import {Component} from "@angular/core";
|
|
|
|
import {properties} from "../../environments/environment";
|
2022-03-31 13:57:13 +02:00
|
|
|
|
|
|
|
@Component({
|
2022-11-03 15:05:26 +01:00
|
|
|
selector: 'explore-fos',
|
|
|
|
template: `
|
2023-07-13 09:55:08 +02:00
|
|
|
<fos></fos>
|
2022-11-03 15:05:26 +01:00
|
|
|
`
|
2022-03-31 13:57:13 +02:00
|
|
|
})
|
2022-06-21 13:08:21 +02:00
|
|
|
|
2023-07-13 09:55:08 +02:00
|
|
|
export class ExploreFosComponent {}
|