added pages
This commit was merged in pull request #6.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Calendar from '../component/calendar/Calendar'
|
||||
|
||||
export default function CalendarPage() {
|
||||
return (
|
||||
<Calendar />
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Comments from '../component/comments/Comments'
|
||||
|
||||
export default function CommentsPage() {
|
||||
return (
|
||||
<Comments />
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Contacts from '../component/contacts/Contacts'
|
||||
|
||||
export default function ContactsPage() {
|
||||
return (
|
||||
<Contacts />
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Reports from '../component/reports/Reports'
|
||||
|
||||
export default function ReportsPage() {
|
||||
return (
|
||||
<Reports />
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Settings from '../component/settings/Settings'
|
||||
|
||||
export default function SettingsPage() {
|
||||
return (
|
||||
<Settings />
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from 'react'
|
||||
import Users from '../component/users/Users'
|
||||
|
||||
export default function UserPage() {
|
||||
return (
|
||||
<Users />
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user