import React from 'react' import freesewing from '@freesewing/core' import Workbench from '@freesewing/components/Workbench' import 'typeface-roboto-condensed' import '@freesewing/css-theme' import Pattern from 'pattern' 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 ( ) } export default App