diff --git a/README.md b/README.md index 503e48572e622..8f298c04c6ca9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ +$samuelmedina.md(xero-2018)export default { + name: "Action ", + description: "This is a demo action", + key: "action", + version: "0.0.1", + type: "action", + props: { + name: { + type: "string", + label: "Name", + }, + }, + async run() { + return 'updated transactoons'`hello ${this.name}!`; + }, +}; 