import React from 'react'; import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import Home from './pages/Home'; import JsonTool from './pages/JsonTool'; import SerializeTool from './pages/SerializeTool'; import UrlTool from './pages/UrlTool'; import Base64Tool from './pages/Base64Tool'; import CsvJsonTool from './pages/CsvJsonTool'; import BeautifierTool from './pages/BeautifierTool'; import DiffTool from './pages/DiffTool'; import TextLengthTool from './pages/TextLengthTool'; import './index.css'; function App() { return ( } /> } /> } /> } /> } /> } /> } /> } /> } /> ); } export default App;