diff --git a/site/content/integrate/plugins/overview.md b/site/content/integrate/plugins/overview.md index 8e67401b68..ca9d0bd009 100644 --- a/site/content/integrate/plugins/overview.md +++ b/site/content/integrate/plugins/overview.md @@ -29,7 +29,7 @@ The sample plugin implements this simply in {{< newtabref href="https://github.c Read more about the server-side of plugins [here]({{< ref "/integrate/plugins/components/server" >}}). ### Web/desktop app -The web app component of a plugin is written in JavaScript with {{< newtabref href="https://react.dev/" title="React" >}} and {{< newtabref href="https://redux.js.org/" title="Redux" >}}. The plugin's bundled JavaScript is included on the page and runs alongside the web app code as a [PluginClass]({{< ref "/integrate/reference/webapp/webapp-reference#pluginclass" >}}) that has initialize and deinitialize methods available for implementation. The initialize function is passed through the [registry]({{< ref "/integrate/reference/webapp/webapp-reference#registry" >}}) which allows the plugin to register React components, actions and hooks to modify and interact with the Mattermost web app. +The web app component of a plugin is written in JavaScript with {{< newtabref href="https://react.dev/" title="React" >}} and {{< newtabref href="https://redux.js.org/" title="Redux" >}}. The plugin's bundled JavaScript is included on the page and runs alongside the web app code as a [PluginClass]({{< ref "/integrate/reference/webapp/webapp-reference#pluginclass" >}}) that has initialize and uninitialize methods available for implementation. The initialize function is passed through the [registry]({{< ref "/integrate/reference/webapp/webapp-reference#registry" >}}) which allows the plugin to register React components, actions and hooks to modify and interact with the Mattermost web app. The sample plugin has a {{< newtabref href="https://github.com/mattermost/mattermost-plugin-starter-template/blob/master/webapp/src/index.tsx" title="shell of an implemented PluginClass" >}}, while the demo plugin {{< newtabref href="https://github.com/mattermost/mattermost-plugin-demo/blob/master/webapp/src/plugin.jsx" title="contains a more complete example" >}}.