sku@10.7.0
·
877 commits
to master
since this release
Minor Changes
-
Playroom: Update to v0.22.0, add
playroomScopeoption (#539)You can now use Playroom's new custom scope feature by providing a
playroomScopefile.EXAMPLE USAGE
sku.config.js:
module.exports = { playroomScope: './playroom/useScope.ts', };
useScope.ts:
import { useToast } from 'braid-design-system'; export default function useScope() { return { showToast: useToast(), }; }