mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
13 lines
357 B
JavaScript
13 lines
357 B
JavaScript
import TabNavigation from '../../ReusableComponents/TabNavigation';
|
|
import Container from '../../ReusableComponents/Container';
|
|
import { PAGE_SETTINGS } from '../../ReusableComponents/Container';
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<Container isCard={ false } page={ PAGE_SETTINGS }>
|
|
<TabNavigation />
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default Dashboard;
|