app
app.use(projectsAPI)
function projectsAPI(app) { … }
@anthonyshort share around projectsAPI as a plugin?
as in export function projectsAPI(app) { }
import projectsAPI from '../plugins/projects'
export function projectsAPI(app) { }
import projectsAPI from '../plugins/projects-api'
app.use(a);
app.use(b);
app.use(c);
There's not much documentation on it [propTypes] because it was something we were trying out. It's going to get pulled out in the next version so it's not in core. Any validation library can do the same thing but better.
+1