Files
pixel.horse/src/ts/components/shared/play-notice/play-notice.ts
T
Eliot Partridge cb5e757fd3 Remove Patreon functionality (#129)
* Remove Patreon links, supper status checking
* Add warnings to admin panel and README
2019-09-17 17:55:21 -05:00

13 lines
328 B
TypeScript

import { Component } from '@angular/core';
import { discordLink } from '../../../client/data';
import { GENERAL_RULES } from '../../../common/constants';
@Component({
selector: 'play-notice',
templateUrl: 'play-notice.pug',
})
export class PlayNotice {
readonly discordLink = discordLink;
readonly rules = GENERAL_RULES;
}