1
0
Fork 0

feat(bruce): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 13:17:10 +02:00
parent 4f1142a3bb
commit 45b115a82f

View file

@ -4,6 +4,7 @@ import { back } from './back.mjs'
import { side } from './side.mjs'
import { front } from './front.mjs'
import { inset } from './inset.mjs'
import { i18n } from '../i18n/index.mjs'
// Create design
const Bruce = new Design({
@ -12,4 +13,4 @@ const Bruce = new Design({
})
// Named exports
export { back, side, front, inset, Bruce }
export { back, side, front, inset, Bruce, i18n }