soupette d512043b12 Add components API
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-04-09 14:13:23 +02:00

13 lines
205 B
JavaScript

import ComponentApi from './ComponentApi';
import FieldApi from './FieldApi';
class Strapi {
componentApi = ComponentApi();
fieldApi = FieldApi();
}
export default () => {
return new Strapi();
};