File tree 1 file changed +51
-42
lines changed
1 file changed +51
-42
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,15 @@ material-dashboard-react
83
83
├── LICENSE.md
84
84
├── README.md
85
85
├── bower.json
86
+ ├── gulpfile.js
87
+ ├── jsconfig.json
86
88
├── package.json
87
89
├── documentation
88
90
│ ├── assets
91
+ │ │ ├── css
92
+ │ │ ├── img
93
+ │ │ │ └── faces
94
+ │ │ └── js
89
95
│ └── tutorial-components.html
90
96
├── public
91
97
│ ├── favicon.ico
@@ -97,82 +103,85 @@ material-dashboard-react
97
103
├── routes.js
98
104
├── assets
99
105
│ ├── css
106
+ │ │ └── material-dashboard-react.css
100
107
│ ├── github
108
+ │ │ ├── md-react.gif
109
+ │ │ └── react.svg
101
110
│ ├── img
102
111
│ │ └── faces
103
112
│ └── jss
104
113
│ ├── material-dashboard-react
105
114
│ │ ├── components
106
115
│ │ ├── layouts
107
116
│ │ └── views
108
- │ └── material-dashboard-react.jsx
117
+ │ └── material-dashboard-react.js
109
118
├── components
110
119
│ ├── Card
111
- │ │ ├── Card.jsx
112
- │ │ ├── CardAvatar.jsx
113
- │ │ ├── CardBody.jsx
114
- │ │ ├── CardFooter.jsx
115
- │ │ ├── CardHeader.jsx
116
- │ │ └── CardIcon.jsx
120
+ │ │ ├── Card.js
121
+ │ │ ├── CardAvatar.js
122
+ │ │ ├── CardBody.js
123
+ │ │ ├── CardFooter.js
124
+ │ │ ├── CardHeader.js
125
+ │ │ └── CardIcon.js
117
126
│ ├── CustomButtons
118
- │ │ └── Button.jsx
127
+ │ │ └── Button.js
119
128
│ ├── CustomInput
120
- │ │ └── CustomInput.jsx
129
+ │ │ └── CustomInput.js
121
130
│ ├── CustomTabs
122
- │ │ └── CustomTabs.jsx
131
+ │ │ └── CustomTabs.js
123
132
│ ├── FixedPlugin
124
- │ │ └── FixedPlugin.jsx
133
+ │ │ └── FixedPlugin.js
125
134
│ ├── Footer
126
- │ │ └── Footer.jsx
135
+ │ │ └── Footer.js
127
136
│ ├── Grid
128
- │ │ ├── GridContainer.jsx
129
- │ │ └── GridItem.jsx
137
+ │ │ ├── GridContainer.js
138
+ │ │ └── GridItem.js
130
139
│ ├── Navbars
131
- │ │ ├── AdminNavbarLinks.jsx
132
- │ │ ├── Navbar.jsx
133
- │ │ └── RTLNavbarLinks.jsx
140
+ │ │ ├── AdminNavbarLinks.js
141
+ │ │ ├── Navbar.js
142
+ │ │ └── RTLNavbarLinks.js
134
143
│ ├── Sidebar
135
- │ │ └── Sidebar.jsx
144
+ │ │ └── Sidebar.js
136
145
│ ├── Snackbar
137
- │ │ ├── Snackbar.jsx
138
- │ │ └── SnackbarContent.jsx
146
+ │ │ ├── Snackbar.js
147
+ │ │ └── SnackbarContent.js
139
148
│ ├── Table
140
- │ │ └── Table.jsx
149
+ │ │ └── Table.js
141
150
│ ├── Tasks
142
- │ │ └── Tasks.jsx
151
+ │ │ └── Tasks.js
143
152
│ └── Typography
144
- │ ├── Danger.jsx
145
- │ ├── Info.jsx
146
- │ ├── Muted.jsx
147
- │ ├── Primary.jsx
148
- │ ├── Quote.jsx
149
- │ ├── Success.jsx
150
- │ └── Warning.jsx
153
+ │ ├── Danger.js
154
+ │ ├── Info.js
155
+ │ ├── Muted.js
156
+ │ ├── Primary.js
157
+ │ ├── Quote.js
158
+ │ ├── Success.js
159
+ │ └── Warning.js
151
160
├── layouts
152
- │ ├── Admin.jsx
153
- │ └── RTL.jsx
161
+ │ ├── Admin.js
162
+ │ └── RTL.js
154
163
├── variables
155
- │ ├── charts.jsx
156
- │ └── general.jsx
164
+ │ ├── charts.js
165
+ │ └── general.js
157
166
└── views
158
167
├── Dashboard
159
- │ └── Dashboard.jsx
168
+ │ └── Dashboard.js
160
169
├── Icons
161
- │ └── Icons.jsx
170
+ │ └── Icons.js
162
171
├── Maps
163
- │ └── Maps.jsx
172
+ │ └── Maps.js
164
173
├── Notifications
165
- │ └── Notifications.jsx
174
+ │ └── Notifications.js
166
175
├── RTLPage
167
- │ └── RTLPage.jsx
176
+ │ └── RTLPage.js
168
177
├── TableList
169
- │ └── TableList.jsx
178
+ │ └── TableList.js
170
179
├── Typography
171
- │ └── Typography.jsx
180
+ │ └── Typography.js
172
181
├── UpgradeToPro
173
- │ └── UpgradeToPro.jsx
182
+ │ └── UpgradeToPro.js
174
183
└── UserProfile
175
- └── UserProfile.jsx
184
+ └── UserProfile.js
176
185
```
177
186
178
187
## Browser Support
You can’t perform that action at this time.
0 commit comments