import React from 'react'; import { Route, Switch } from 'react-router-dom'; import { ADD_SNAP_ACCOUNT_ROUTE } from '../../helpers/constants/routes'; import { BackgroundColor, Display, JustifyContent, } from '../../helpers/constants/design-system'; import { Box } from '../../components/component-library'; import NewSnapAccountPage from './new-snap-account-page'; import SnapAccountDetailPage from './snap-account-detail-page'; export default function AddSnapAccountPage() { return ( <> ); }