Docs for notifications

Summary: as per title

Reviewed By: passy

Differential Revision: D10449043

fbshipit-source-id: 70fac302f9c5ebc4d7ca9950aa8fab1c3e71006e
This commit is contained in:
Daniel Büchele
2018-10-19 08:29:05 -07:00
committed by Facebook Github Bot
parent 9a43a00a80
commit 1904cc3521
4 changed files with 92 additions and 42 deletions

View File

@@ -18,19 +18,7 @@ To create the desktop part of your plugin, initiate a new JavaScript project usi
}
```
In `index.js` you can now create your plugin. We expect this file to have a default export of type `FlipperPlugin`. A hello-world-plugin could look like this:
```js
import {FlipperPlugin} from 'flipper';
export default class extends FlipperPlugin {
render() {
return 'hello world';
}
}
```
Learn more on how to use [Flipper's UI components](ui-components.md).
In `index.js` you can now create your plugin. Take a look at [Writing a plugin](writing-a-plugin.md) to learn how a plugin can look like. Also, make sure to check out [Flipper's UI components](ui-components.md) when building your plugin.
### Dynamically loading plugins