ignite-router-flux
Version:
Infinite Red's hot boilerplate for React Native.
22 lines (18 loc) • 388 B
JavaScript
const screenExamples = require('./screenExamples')
/**
* Add the plugin.
*
* @param {any} context - The gluegun context.
*/
async function add (context) {
await screenExamples.add(context)
}
/**
* Remove the plugin.
*
* @param {any} context - The gluegun context.
*/
async function remove (context) {
await screenExamples.remove(context)
}
module.exports = { add, remove }