pussy-ts/src/pages/teleport/mainScreen/TeleportMainScreen.tsx

import {
  SwapAction,
  SendAction,
  BridgeAction,
  AboutTeleport,
} from './components';
import styles from './TeleportMainScreen.module.scss';

function TeleportMainScreen() {
  return (
    <div className={styles.container}>
      <AboutTeleport />
      <div className={styles.cardContainer}>
        <SendAction />
        <BridgeAction />
        <SwapAction />
      </div>
    </div>
  );
}

export default TeleportMainScreen;

Synonyms

cyb/src/pages/teleport/mainScreen/TeleportMainScreen.tsx

Neighbours