ba-cafe

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

messages.ts (365B)


      1 export interface NotificationMessage {
      2   title: string;
      3   body: string;
      4 }
      5 
      6 export const messages: NotificationMessage[] = [
      7   { 
      8     title: "先生!お仕事の時間ですよ!", 
      9     body: "生徒さんたちが待ってます!" 
     10   },
     11   { 
     12     title: "先生、お仕事お疲れ様です。", 
     13     body: "生徒のみなさんがお待ちです。" 
     14   },
     15 ];