Skip to content

Commit 8fdbb6e

Browse files
committed
- new folder structure
1 parent 390bab5 commit 8fdbb6e

File tree

1 file changed

+51
-42
lines changed

1 file changed

+51
-42
lines changed

README.md

+51-42
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,15 @@ material-dashboard-react
8383
├── LICENSE.md
8484
├── README.md
8585
├── bower.json
86+
├── gulpfile.js
87+
├── jsconfig.json
8688
├── package.json
8789
├── documentation
8890
│   ├── assets
91+
│   │   ├── css
92+
│   │   ├── img
93+
│   │   │   └── faces
94+
│   │   └── js
8995
│   └── tutorial-components.html
9096
├── public
9197
│   ├── favicon.ico
@@ -97,82 +103,85 @@ material-dashboard-react
97103
├── routes.js
98104
├── assets
99105
│   ├── css
106+
│   │   └── material-dashboard-react.css
100107
│   ├── github
108+
│   │   ├── md-react.gif
109+
│   │   └── react.svg
101110
│   ├── img
102111
│   │   └── faces
103112
│   └── jss
104113
│   ├── material-dashboard-react
105114
│   │   ├── components
106115
│   │   ├── layouts
107116
│   │   └── views
108-
│   └── material-dashboard-react.jsx
117+
│   └── material-dashboard-react.js
109118
├── components
110119
│   ├── 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
117126
│   ├── CustomButtons
118-
│   │   └── Button.jsx
127+
│   │   └── Button.js
119128
│   ├── CustomInput
120-
│   │   └── CustomInput.jsx
129+
│   │   └── CustomInput.js
121130
│   ├── CustomTabs
122-
│   │   └── CustomTabs.jsx
131+
│   │   └── CustomTabs.js
123132
│   ├── FixedPlugin
124-
│   │   └── FixedPlugin.jsx
133+
│   │   └── FixedPlugin.js
125134
│   ├── Footer
126-
│   │   └── Footer.jsx
135+
│   │   └── Footer.js
127136
│   ├── Grid
128-
│   │   ├── GridContainer.jsx
129-
│   │   └── GridItem.jsx
137+
│   │   ├── GridContainer.js
138+
│   │   └── GridItem.js
130139
│   ├── Navbars
131-
│   │   ├── AdminNavbarLinks.jsx
132-
│   │   ├── Navbar.jsx
133-
│   │   └── RTLNavbarLinks.jsx
140+
│   │   ├── AdminNavbarLinks.js
141+
│   │   ├── Navbar.js
142+
│   │   └── RTLNavbarLinks.js
134143
│   ├── Sidebar
135-
│   │   └── Sidebar.jsx
144+
│   │   └── Sidebar.js
136145
│   ├── Snackbar
137-
│   │   ├── Snackbar.jsx
138-
│   │   └── SnackbarContent.jsx
146+
│   │   ├── Snackbar.js
147+
│   │   └── SnackbarContent.js
139148
│   ├── Table
140-
│   │   └── Table.jsx
149+
│   │   └── Table.js
141150
│   ├── Tasks
142-
│   │   └── Tasks.jsx
151+
│   │   └── Tasks.js
143152
│   └── 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
151160
├── layouts
152-
│   ├── Admin.jsx
153-
│   └── RTL.jsx
161+
│   ├── Admin.js
162+
│   └── RTL.js
154163
├── variables
155-
│   ├── charts.jsx
156-
│   └── general.jsx
164+
│   ├── charts.js
165+
│   └── general.js
157166
└── views
158167
├── Dashboard
159-
│   └── Dashboard.jsx
168+
│   └── Dashboard.js
160169
├── Icons
161-
│   └── Icons.jsx
170+
│   └── Icons.js
162171
├── Maps
163-
│   └── Maps.jsx
172+
│   └── Maps.js
164173
├── Notifications
165-
│   └── Notifications.jsx
174+
│   └── Notifications.js
166175
├── RTLPage
167-
│   └── RTLPage.jsx
176+
│   └── RTLPage.js
168177
├── TableList
169-
│   └── TableList.jsx
178+
│   └── TableList.js
170179
├── Typography
171-
│   └── Typography.jsx
180+
│   └── Typography.js
172181
├── UpgradeToPro
173-
│   └── UpgradeToPro.jsx
182+
│   └── UpgradeToPro.js
174183
└── UserProfile
175-
└── UserProfile.jsx
184+
└── UserProfile.js
176185
```
177186

178187
## Browser Support

0 commit comments

Comments
 (0)