PHP Classes

File: client/src/features/pages/Dashboard.tsx

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   client/src/features/pages/Dashboard.tsx   Download  
File: client/src/features/pages/Dashboard.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 334 bytes
 

Contents

Class file image Download
import React from 'react'; import {observer} from "mobx-react-lite"; import Menu from "./dashboard/Menu"; import {Outlet} from "react-router-dom"; function Dashboard () { return ( <div className="flex relative pl-64"> <Menu /> <Outlet /> </div> ) } export default observer(Dashboard);