-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from rahulg1254/admin-master
Task #223691 feat: Delete API integration in states, and responsive UI Master Data
- Loading branch information
Showing
5 changed files
with
138 additions
and
34 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const cardData = [ | ||
{ | ||
id: "1", | ||
state: "Andhra Pradesh", | ||
boardsUploaded: 1, | ||
totalBoards: 3, | ||
details: | ||
"Andhra Pradesh is a state in the southeastern coastal region of India.", | ||
boards: ["AP Board", "NIOS", "ICSE"], | ||
subjects: ["Telugu", "English", "Maths"], | ||
}, | ||
{ | ||
id: "2", | ||
state: "Maharashtra", | ||
boardsUploaded: 2, | ||
totalBoards: 3, | ||
details: | ||
"Maharashtra is a state in the western peninsular region of India.", | ||
boards: ["Maharashtra Board", "CBSE", "ICSE"], | ||
subjects: ["Marathi", "English", "Science"], | ||
}, | ||
{ | ||
id: "3", | ||
state: "Karnataka", | ||
boardsUploaded: 2, | ||
totalBoards: 3, | ||
details: "Karnataka is a state in the southwestern region of India.", | ||
boards: ["Karnataka Board", "ICSE", "NIOS"], | ||
subjects: ["Kannada", "Maths", "Science"], | ||
}, | ||
{ | ||
id: "4", | ||
state: "Tamil Nadu", | ||
boardsUploaded: 1, | ||
totalBoards: 3, | ||
details: "Tamil Nadu is a state in the southern part of India.", | ||
boards: ["Tamil Nadu Board", "NIOS", "CBSE"], | ||
subjects: ["Tamil", "English", "Social Studies"], | ||
}, | ||
{ | ||
id: "5", | ||
state: "Kerala", | ||
boardsUploaded: 2, | ||
totalBoards: 2, | ||
details: "Kerala is a state on the southwestern Malabar Coast of India.", | ||
boards: ["Kerala Board", "ICSE", "CBSE"], | ||
subjects: ["Malayalam", "Science", "Maths"], | ||
}, | ||
]; | ||
|
||
export default cardData; |
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
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
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