mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
const { checkActionsLoaded } = require('./dist/preset/checkActionsLoaded');
|
|
|
|
function previewAnnotations(entry = [], options) {
|
|
checkActionsLoaded(options.configDir);
|
|
return entry;
|
|
}
|
|
|
|
module.exports = {
|
|
previewAnnotations,
|
|
};
|