diff --git a/packages/create-freesewing-pattern/template/default/example/src/App.js b/packages/create-freesewing-pattern/template/default/example/src/App.js index 50390355562..e10c8f72118 100644 --- a/packages/create-freesewing-pattern/template/default/example/src/App.js +++ b/packages/create-freesewing-pattern/template/default/example/src/App.js @@ -6,16 +6,23 @@ import '@freesewing/css-theme' import Pattern from 'pattern' -const App = props => { +const App = (props) => { let instance = new Pattern() let config = instance.config + // You can use this to add transations + let translations = { + JSON: 'JSON', + someOtherString: 'Some other string that needs translation' + } + return ( ) }