14 lines
384 B
TypeScript
14 lines
384 B
TypeScript
export interface ReportPageText {
|
||
placeHolderText: string;
|
||
}
|
||
|
||
export const reportPageZhCn: ReportPageText = {
|
||
placeHolderText:
|
||
'无论是有关于小程序的建议,还是关于E志者协会的建议,都可以提出来哦!',
|
||
};
|
||
|
||
export const reportPageEnUs: ReportPageText = {
|
||
placeHolderText:
|
||
'Feel free to post your suggestions about the weapp or about us!',
|
||
};
|