enso/app/gui/integration-test/dashboard/actions/SettingsPageActions.ts
somebody1234 b83c5a15eb
Clean up integration tests and add listeners for backend calls (#11847)
- Close https://github.com/enso-org/cloud-v2/issues/1604
- Add ability to track backend calls
- Remove inconsistent integration test code
- Add skeleton classes for settings pages

# Important Notes
None
2024-12-12 09:49:58 +00:00

11 lines
414 B
TypeScript

/** @file Actions for the default tab of the "settings" page. */
import SettingsAccountTabActions from './SettingsAccountTabActions'
/** Actions for the default tab of the "settings" page. */
type SettingsPageActions<Context> = SettingsAccountTabActions<Context>
/** Actions for the default tab of the "settings" page. */
const SettingsPageActions = SettingsAccountTabActions
export default SettingsPageActions