react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
20 lines (17 loc) • 512 B
JavaScript
// @flow
import type { Strings } from './types';
export const strings: Strings = {
login: {
headerTitle: 'Вход',
},
main: {
headerTitle: 'Главный',
booksButtonTitle: 'Книги',
},
books: {
headerTitle: 'Книги',
getAvaliableTitle: (avaliableCount: number) => `Доступно: ${avaliableCount}`,
getTakeButtonTitle: (count: number) => `Взять ${count} книг`,
getReturnButtonTitle: (count: number) => `Вернуть ${count} книг`,
},
};