-
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.
retrieved cardData due to course planner UI
- Loading branch information
1 parent
6fa3c78
commit f2c0a5c
Showing
1 changed file
with
51 additions
and
0 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
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; |