1
0
Fork 0

Trying my hand at plugin-react

This commit is contained in:
Joost De Cock 2019-05-03 20:13:27 +02:00
parent ad9f559dc0
commit 16c83a507a
55 changed files with 466 additions and 90 deletions

View file

@ -0,0 +1,11 @@
import { version, name } from "../package.json";
export default {
name: name,
version: version,
hooks: {
postDraft: function(pattern, props) {
console.log("postDraft hook in react plugin");
}
}
};