Skip to content

Commit

Permalink
rename the logs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
SUN committed Jun 11, 2024
1 parent 32fdc70 commit 32cb41b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions eventmesh-dashboard-view/src/routes/elogs/Logs.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React, { forwardRef } from 'react'
import { Box, BoxProps } from '@mui/material'
import Page from '../../components/page/Layout'
import Construction from '../../components/Construction'

interface LogsProps extends BoxProps {}

const Logs = forwardRef<typeof Box, LogsProps>(({ ...props }, ref) => {
return (
<Page ref={ref}>
<Construction />
</Page>
)
})

Logs.displayName = 'Logs'
export default Logs

0 comments on commit 32cb41b

Please sign in to comment.