refactor: 페이지 index.js들이 default export 하도록 변경

This commit is contained in:
jhynsoo 2024-07-21 01:23:47 +09:00
parent d53ede5aba
commit d915278a7f
19 changed files with 19 additions and 19 deletions

View File

@ -1 +1 @@
export { default as CreateQuestionPage } from './CreateQuestionPage';
export { default } from './CreateQuestionPage';

View File

@ -1 +1 @@
export { default as HomePage } from './HomePage';
export { default } from './HomePage';

View File

@ -1 +1 @@
export { default as LearningLectureDetailPage } from './LearningLectureDetailPage';
export { default } from './LearningLectureDetailPage';

View File

@ -1 +1 @@
export { default as LectureInfoPage } from './LectureInfoPage';
export { default } from './LectureInfoPage';

View File

@ -1 +1 @@
export { default as LoginPage } from './LoginPage';
export { default } from './LoginPage';

View File

@ -1 +1 @@
export { default as MyInfoChangePage } from './MyInfoChangePage';
export { default } from './MyInfoChangePage';

View File

@ -1 +1 @@
export { default as NotFoundPage } from './NotFoundPage';
export { default } from './NotFoundPage';

View File

@ -1 +1 @@
export { default as NoticeDetailPage } from './NoticeDetailPage';
export { default } from './NoticeDetailPage';

View File

@ -1 +1 @@
export { default as NoticeListPage } from './NoticeListPage';
export { default } from './NoticeListPage';

View File

@ -1 +1 @@
export { default as NoticeWritePage } from './NoticeWritePage';
export { default } from './NoticeWritePage';

View File

@ -1 +1 @@
export { default as PasswordChangePage } from './PasswordChangePage';
export { default } from './PasswordChangePage';

View File

@ -1 +1 @@
export { default as PasswordResetPage } from './PasswordResetPage';
export { default } from './PasswordResetPage';

View File

@ -1 +1 @@
export { default as QuestionDetailPage } from './QuestionDetailPage';
export { default } from './QuestionDetailPage';

View File

@ -1 +1 @@
export { default as QuestionListPage } from './QuestionListPage';
export { default } from './QuestionListPage';

View File

@ -1 +1 @@
export { default as StudentHomePage } from './StudentHomePage';
export { default } from './StudentHomePage';

View File

@ -1 +1 @@
export { default as StudentListPage } from './StudentListPage';
export { default } from './StudentListPage';

View File

@ -1 +1 @@
export { default as TeacherLectureDetailPage } from './TeacherLectureDetailPage';
export { default } from './TeacherLectureDetailPage';

View File

@ -1 +1 @@
export { default as TeacherNoticeListPage } from './TeacherNoticeListPage';
export { default } from './TeacherNoticeListPage';

View File

@ -1 +1 @@
export { default as UserRegisterPage } from './UserRegisterPage';
export { default } from './UserRegisterPage';