1
0
Fork 0
freesewing/designs/penelope/src/index.mjs
2022-09-05 09:22:17 +02:00

14 lines
354 B
JavaScript

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],
})
// Named exports
export { back, front, waistband, Penelope }