react-text-editor-kit
Version:
React Text Editor Kit is a customizable rich text editor component for React applications. It provides a flexible and easy-to-use interface for users to create and edit content with various formatting options. And also easy to integrate in react applicati
16 lines (13 loc) • 385 B
JavaScript
import { Routes, Route } from "react-router-dom";
import Dashboard from "./pages/Dashboard";
import AnOtherPage from "./pages/AnOtherPage";
function App() {
// console.log = () => {};
return (
<Routes>
<Route path="/" element={<Dashboard />}></Route>
<Route path="/other" element={<AnOtherPage />}></Route>
</Routes>
);
}
export default App;