1
0
Fork 0

feat(paco): Initial merge of my work on the paco pattern

This also includes a lot of dependency updates
This commit is contained in:
Joost De Cock 2020-08-02 19:17:06 +02:00
parent 46921db761
commit a548a6964d
209 changed files with 9613 additions and 14366 deletions

View file

@ -0,0 +1,32 @@
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 (
<Workbench
freesewing={freesewing}
Pattern={Pattern}
config={config}
userLanguage="en"
//translations={translations}
/>
)
}
export default App