mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 01:19:52 -04:00
14 lines
220 B
TypeScript
14 lines
220 B
TypeScript
![]() |
import { Component } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "strongs",
|
||
|
templateUrl: "build/components/strongs/strongs.html"
|
||
|
})
|
||
|
export class Strongs {
|
||
|
|
||
|
private item: StrongsResult;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|