mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-25 16:29:49 -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() {
|
|
}
|
|
}
|