| 1 |
import Register from "./register/register"; |
| 2 |
import EditProfile from "./edit-profile/edit-profile"; |
| 3 |
import UserListing from "./user-listing/user-listing"; |
| 4 |
import Login from "./login/login"; |
| 5 |
import RecoverPassword from "./recover-password/recover-password"; |
| 6 |
import ContentRestrictionStart from "./content-restriction-end/content-restriction-end"; |
| 7 |
import ContentRestrictionEnd from "./content-restriction-start/content-restriction-start"; |
| 8 |
|
| 9 |
export default [ |
| 10 |
Register, |
| 11 |
EditProfile, |
| 12 |
UserListing, |
| 13 |
Login, |
| 14 |
RecoverPassword, |
| 15 |
ContentRestrictionStart, |
| 16 |
ContentRestrictionEnd, |
| 17 |
]; |
| 18 |
|