generated from nhcarrigan/template
20 lines
331 B
TypeScript
20 lines
331 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import { Component } from "@angular/core";
|
|
|
|
/**
|
|
* Renders the reviews page.
|
|
*/
|
|
@Component({
|
|
imports: [],
|
|
selector: "app-reviews",
|
|
styleUrl: "./reviews.css",
|
|
templateUrl: "./reviews.html",
|
|
})
|
|
export class Reviews {
|
|
|
|
}
|