mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-26 08:49:49 -04:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
![]() |
import { Component } from "@angular/core";
|
||
|
@Component({
|
||
|
selector: "passage",
|
||
|
templateUrl: "build/components/passage/passage.html"
|
||
|
})
|
||
|
export class Passage {
|
||
|
private item: BiblePassageResult;
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|