fix: export all exports from core in app

This commit is contained in:
Daniel Lautzenheiser 2023-01-26 09:41:18 -05:00
parent 3b37b76f43
commit 7d938387a7
2 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@
"@babel/eslint-parser": "7.19.1",
"@babel/runtime": "7.20.13",
"@emotion/babel-preset-css-prop": "11.10.0",
"@staticcms/core": "^1.2.2",
"@staticcms/core": "1.2.2",
"buffer": "6.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",

View File

@ -1,3 +1,4 @@
import CMS from '@staticcms/core';
export * from '@staticcms/core';
export default CMS;