# user-settings Welcome to the user-settings plugin! _This plugin was created through the Backstage CLI_ ## About the plugin This plugin provides two components, `` is intended to be used within the [``](https://backstage.io/storybook/?path=/story/sidebar--sample-sidebar) and displays the signed-in users profile picture and name. The second component is a settings page where the user can control different settings across the App. ## Usage Add the item to the Sidebar: ```ts import { Settings as SidebarSettings } from '@backstage/plugin-user-settings'; ; ``` Add the page to the App routing: ```ts import { Router as SettingsRouter } from '@backstage/plugin-user-settings'; const AppRoutes = () => ( } /> ); ``` ### Props **Auth Providers** By default, the plugin provides a list of configured authentication providers fetched from `app-config.yaml` and displayed in the "Authentication Providers" tab. If you want to supply your own custom list of Authentication Providers, use the `providerSettings` prop: ```ts const MyAuthProviders = () => ( {someAction} ); const AppRoutes = () => ( } />} /> ); ``` > **Note that the list of providers expects to be rendered within a MUI [``](https://material-ui.com/components/lists/)**