mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-22 02:40:02 +00:00
25 lines
633 B
TypeScript
25 lines
633 B
TypeScript
import { SettingsPanel } from '@/components/ui/settings-dialog'
|
|
import { Preferences } from './Preferences'
|
|
import MatchingRules from './MatchingRules'
|
|
import KeyboardShortcuts from './KeyboardShortcuts'
|
|
|
|
const SettingsPanelsContent = () => {
|
|
return (
|
|
<>
|
|
<SettingsPanel value="preferences">
|
|
<Preferences />
|
|
</SettingsPanel>
|
|
<SettingsPanel value="rules">
|
|
<MatchingRules />
|
|
</SettingsPanel>
|
|
<SettingsPanel value="bank-accounts" />
|
|
<SettingsPanel value="masters" />
|
|
<SettingsPanel value="keyboard-shortcuts">
|
|
<KeyboardShortcuts />
|
|
</SettingsPanel>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default SettingsPanelsContent
|