-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
405 additions
and
155 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
// import React from 'react' | ||
// import Error400 from '../../components/ErrorPages/Error400' | ||
import React from "react"; | ||
// import Error400 from "../../components/ErrorPages/Error400"; | ||
|
||
// const error404 = () => { | ||
// return ( | ||
// <div className="h-screen"> | ||
// <Error400/> | ||
// </div> | ||
// ) | ||
// } | ||
const error404 = () => { | ||
// return ( | ||
// <div className="h-screen"> | ||
// <Error400/> | ||
// </div> | ||
// ) | ||
|
||
// export default error404 | ||
return <></>; | ||
}; | ||
|
||
export default error404; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
// import React from 'react' | ||
// import Error500 from '../../components/ErrorPages/Error500' | ||
import React from "react"; | ||
// import Error500 from "../../components/ErrorPages/Error500"; | ||
|
||
// const error500 = () => { | ||
// return ( | ||
// <div className='h-scren'> | ||
// <Error500/> | ||
// </div> | ||
// ) | ||
// } | ||
const error500 = () => { | ||
// return ( | ||
// <div className='h-scren'> | ||
// <Error500/> | ||
// </div> | ||
// ) | ||
|
||
// export default error500 | ||
return <></>; | ||
}; | ||
|
||
export default error500; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
// import React from 'react' | ||
import React from "react"; | ||
|
||
// const edit = () => { | ||
// return ( | ||
// <div>edit</div> | ||
// ) | ||
// } | ||
const edit = () => { | ||
return <div>edit</div>; | ||
}; | ||
|
||
// export default edit | ||
export default edit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
// import React, { useState } from 'react' | ||
// import { dailySalesData } from '../../components/dummy_data/dailySalesData'; | ||
// import UserProfilePage from '../../components/UserProfilePage' | ||
import React from "react"; | ||
// import { dailySalesData } from "../../components/dummy_data/dailySalesData"; | ||
// import UserProfilePage from "../../components/UserProfilePage"; | ||
|
||
// const profile = () => { | ||
// const [DailySales, SetDailySales] = useState(dailySalesData); | ||
// return ( | ||
// <UserProfilePage DailySales={DailySales}/> | ||
// ) | ||
// } | ||
const profile = () => { | ||
// const [DailySales, SetDailySales] = useState(dailySalesData); | ||
return ( | ||
// <UserProfilePage DailySales={DailySales}/> | ||
<></> | ||
); | ||
}; | ||
|
||
// export default profile | ||
export default profile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
// import React from "react"; | ||
import React from "react"; | ||
// import AccountSettingsPage from "../../components/AccountSettingPage"; | ||
|
||
// const setting = () => { | ||
// return (<AccountSettingsPage />); | ||
// }; | ||
const setting = () => { | ||
// return (<AccountSettingsPage />); | ||
return <></>; | ||
}; | ||
|
||
// export default setting; | ||
export default setting; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import React from 'react' | ||
import AddCategoryPage from '../../components/AddCategoryPage' | ||
import React from "react"; | ||
// import AddCategoryPage from '../../components/AddCategoryPage' | ||
|
||
const addcategory = () => { | ||
return ( | ||
<div className="bg-globalBg h-screen"> | ||
<AddCategoryPage/> | ||
</div> | ||
) | ||
} | ||
// return ( | ||
// <div className="bg-globalBg h-screen"> | ||
// <AddCategoryPage/> | ||
// </div> | ||
// ) | ||
<></>; | ||
}; | ||
|
||
export default addcategory | ||
export default addcategory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
import React from 'react' | ||
import AddNewSongPage from '../../components/AddNewSongPage' | ||
import React from "react"; | ||
// import AddNewSongPage from "../../components/AddNewSongPage"; | ||
|
||
const AddNewSinger = () => { | ||
// return ( | ||
// <div className="bg-globalBg h-screen"> | ||
// <AddNewSongPage/> | ||
// </div> | ||
// ) | ||
|
||
const AddNewSinger= () => { | ||
return ( | ||
<div className="bg-globalBg h-screen"> | ||
<AddNewSongPage/> | ||
</div> | ||
) | ||
} | ||
return <></>; | ||
}; | ||
|
||
export default AddNewSinger | ||
export default AddNewSinger; |
Oops, something went wrong.