1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Started fixing ReactNative app

This commit is contained in:
Laurent Cozic
2017-07-05 21:34:25 +01:00
parent 9d630ab0ca
commit f0a8cbe95d
50 changed files with 12 additions and 153 deletions

View File

@ -0,0 +1,9 @@
import { sprintf } from 'sprintf-js';
// This function does nothing for now, but later will return
// a different string depending on the language.
function _(s, ...args) {
return sprintf(s, ...args);
}
export { _ };