mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
19 lines
477 B
JavaScript
19 lines
477 B
JavaScript
import Container from '../../ReusableComponents/Container';
|
|
import TabNavigation from '../../ReusableComponents/TabNavigation';
|
|
import { getSettingsTabs } from './Tabs';
|
|
import SettingsNavigation from './Components/Navigation';
|
|
|
|
const SettingsScreen = () => {
|
|
const tabs = getSettingsTabs();
|
|
|
|
return (
|
|
<>
|
|
<SettingsNavigation />
|
|
<Container page="settings">
|
|
<TabNavigation tabs={ tabs }></TabNavigation>
|
|
</Container>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SettingsScreen;
|