Skip to content

Commit

Permalink
#5 fix (webview) pages directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Menh1505 committed Oct 28, 2024
1 parent 9397434 commit a13f3b9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Movelazy-vscode/webview/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import { Link, Outlet } from 'react-router-dom';
import './App.css';
import Aptos from './Pages/Aptos';
import Foundry from './Pages/Foundry';
import Aptos from './Pages/aptos/Aptos';
import Foundry from './Pages/sol/Foundry';
import { Logo } from "./components/Logo";
import { useState } from 'react';
import { Tab } from './components/Tab';
Expand Down
10 changes: 5 additions & 5 deletions Movelazy-vscode/webview/src/Pages/aptos/Aptos.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import { Link, useNavigate } from "react-router-dom";
import { Tab } from '../components/Tab';
import { CoinIcon } from '../icons/CoinIcon';
import { AptosIcon } from '../icons/AptosIcon';
import { WalletIcon } from '../icons/WalletIcon';
import NavigateTitle from '../components/Header';
import { Tab } from '../../components/Tab';
import { CoinIcon } from '../../icons/CoinIcon';
import { AptosIcon } from '../../icons/AptosIcon';
import { WalletIcon } from '../../icons/WalletIcon';
import NavigateTitle from '../../components/Header';

const Aptos: React.FC = () => {

Expand Down
12 changes: 6 additions & 6 deletions Movelazy-vscode/webview/src/Pages/sol/Foundry.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { Link, useNavigate } from "react-router-dom";
import { Tab } from '../components/Tab';
import { CoinIcon } from '../icons/CoinIcon';
import { FoundryIcon } from '../icons/FoundryIcon';
import { WalletIcon } from '../icons/WalletIcon';
import { FaucetIcon } from '../icons/FaucetIcon';
import NavigateTitle from '../components/Header';
import { Tab } from '../../components/Tab';
import { CoinIcon } from '../../icons/CoinIcon';
import { FoundryIcon } from '../../icons/FoundryIcon';
import { WalletIcon } from '../../icons/WalletIcon';
import { FaucetIcon } from '../../icons/FaucetIcon';
import NavigateTitle from '../../components/Header';

const Foundry: React.FC = () => {
const navigate = useNavigate();
Expand Down
4 changes: 2 additions & 2 deletions Movelazy-vscode/webview/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import App from './App';
import { createRoot } from 'react-dom/client';
import { Route, MemoryRouter, Routes } from 'react-router-dom';
import { RootLayout } from './RootLayout';
import Aptos from './Pages/Aptos';
import Foundry from './Pages/Foundry';
import Aptos from './Pages/aptos/Aptos';
import Foundry from './Pages/sol/Foundry';
import AccountBalance from './features/AccountBalance';
// import Deploy from './features/Deploy';
import DeployFoundry from './features/Deploy/DeployFoundry';
Expand Down

0 comments on commit a13f3b9

Please sign in to comment.