Commit be697420 authored by tom's avatar tom

move Page to shared folder

parent ba705b5d
import React from 'react';
import type { NextPage } from 'next';
import { Center } from '@chakra-ui/react';
import Page from 'ui/Page/Page';
import Page from 'ui/shared/Page/Page';
const Home: NextPage = () => {
return (
......
......@@ -2,7 +2,7 @@ import React, { useCallback, useState } from 'react';
import { Box, Button, Heading, HStack, Link, Text, useColorModeValue, useDisclosure } from '@chakra-ui/react';
import Page from '../Page/Page';
import Page from 'ui/shared/Page/Page';
import ApiKeyTable from '../apiKey/ApiKeyTable/ApiKeyTable';
import ApiKeyModal from '../apiKey/ApiKeyModal/ApiKeyModal';
......
......@@ -10,7 +10,7 @@ import {
TabPanels,
} from '@chakra-ui/react';
import Page from '../Page/Page';
import Page from 'ui/shared/Page/Page';
import PrivateAddressTags from '../privateTags/PrivateAddressTags';
import PrivateTransactionTags from '../privateTags/PrivateTransactionTags';
......
......@@ -2,7 +2,7 @@ import React, { useCallback, useState } from 'react';
import { Box, Button, Text, useDisclosure, Heading } from '@chakra-ui/react';
import Page from '../Page/Page';
import Page from 'ui/shared/Page/Page';
import WatchlistTable from '../watchlist/WatchlistTable/WatchlistTable';
import AddressModal from '../watchlist/AddressModal/AddressModal';
......
import React from 'react';
import { Box, HStack, VStack } from '@chakra-ui/react';
import Navigation from '../navigation/Navigation';
import Header from '../header/Header';
import Navigation from 'ui/navigation/Navigation';
import Header from 'ui/header/Header';
interface Props {
children: React.ReactNode;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment