# Plugin Action This component is used to display a plugin action in the form of a toggle or a disconnect Jetpack button. ## How to use By default, the PluginAction component will attempt to render a FormToggle. ```js import PluginAction from 'calypso/my-sites/plugins/plugin-action/plugin-action'; function render() { return (
); } ``` This behavior can be overridden by passing a child to the PluginAction component. ```js import { Button } from '@automattic/components'; import PluginAction from 'calypso/my-sites/plugins/plugin-action/plugin-action'; function render() { return (