2022-09-05 09:22:17 +02:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
|
|
|
import { back } from './back.mjs'
|
|
|
|
import { front } from './front.mjs'
|
|
|
|
import { waistband } from './waistband.mjs'
|
|
|
|
|
|
|
|
// Setup our new design
|
|
|
|
const Penelope = new Design({
|
|
|
|
data,
|
|
|
|
parts: [back, front, waistband],
|
|
|
|
})
|
2019-08-21 11:11:05 -07:00
|
|
|
|
2022-06-14 13:09:12 +02:00
|
|
|
// Named exports
|
2022-09-05 09:22:17 +02:00
|
|
|
export { back, front, waistband, Penelope }
|