2019-05-03 14:21:23 +02:00
|
|
|
import React from "react";
|
2019-05-02 18:13:10 +02:00
|
|
|
import freesewing from "@freesewing/core";
|
|
|
|
import { Workbench } from "@freesewing/components";
|
|
|
|
import "typeface-roboto-condensed";
|
|
|
|
import "@freesewing/css-theme";
|
2019-05-02 12:40:03 +02:00
|
|
|
import "./App.css";
|
2018-03-04 15:43:18 -05:00
|
|
|
|
2019-05-02 18:13:10 +02:00
|
|
|
import Pattern from "pattern";
|
2018-03-04 15:43:18 -05:00
|
|
|
|
2019-05-03 14:21:23 +02:00
|
|
|
const App = props => {
|
|
|
|
let instance = new Pattern();
|
|
|
|
let config = instance.config;
|
|
|
|
return (
|
|
|
|
<Workbench freesewing={freesewing} Pattern={Pattern} config={config} />
|
|
|
|
);
|
|
|
|
};
|
2019-03-02 11:37:17 -05:00
|
|
|
|
|
|
|
export default App;
|