PHP Classes

File: src/routes/index.ts

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WordPress React Plugin Kit   src/routes/index.ts   Download  
File: src/routes/index.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WordPress React Plugin Kit
Environment to develop new WordPress plugins
Author: By
Last change:
Date: 1 year ago
Size: 289 bytes
 

Contents

Class file image Download
/** * Internal dependencies */ import HomePage from '../pages/HomePage'; import JobsPage from '../pages/jobs/JobsPage'; const routes = [ { path: '/', element: HomePage, }, { path: '/jobs', element: JobsPage, }, ]; export default routes;