consumerportal
Version:
mydna Custimised for you
21 lines (17 loc) • 704 B
text/typescript
/// <reference path="../../../includes.ts" />
module app {
class Warning {
public template: string = `
<div class="warning red">
<div>Warning</div>
<div>
The following diet recommendation, sample meal plan and recommend average daily number of services by food
group apply for persons above the age of 19. As you are under this age, we recommend that you consult with
your healthcare professional before you start any new diet program recommended in this report.
</div></div>
`;
}
angular
.module('app')
.component('dietAgeWarning', new Warning());
}