@@ -79,20 +79,20 @@ Within the download you'll find the following directories and files:
7979material-kit-react
8080.
8181├── CHANGELOG.md
82+ ├── ISSUE_TEMPLATE.md
83+ ├── LICENSE.md
84+ ├── README.md
85+ ├── bower.json
86+ ├── gulpfile.js
87+ ├── jsconfig.json
88+ ├── package.json
8289├── Documentation
8390│ ├── assets
8491│ │ ├── css
8592│ │ ├── img
8693│ │ │ └── faces
8794│ │ └── js
88- │ │ ├── bootstrap.min.js
89- │ │ └── jquery-3.2.1.min.js
9095│ └── tutorial-components.html
91- ├── ISSUE_TEMPLATE.md
92- ├── LICENSE.md
93- ├── README.md
94- ├── bower.json
95- ├── package.json
9696├── public
9797│ ├── favicon.ico
9898│ ├── index.html
@@ -102,6 +102,7 @@ material-kit-react
102102 ├── logo.svg
103103 ├── assets
104104 │ ├── css
105+ │ │ └── material-kit-react.css.map
105106 │ ├── img
106107 │ │ ├── examples
107108 │ │ └── faces
@@ -111,7 +112,7 @@ material-kit-react
111112 │ │ │ └── views
112113 │ │ │ ├── componentsSections
113114 │ │ │ ├── landingPageSections
114- │ │ └── material-kit-react.jsx
115+ │ │ └── material-kit-react.js
115116 │ └── scss
116117 │ ├── core
117118 │ │ ├── mixins
@@ -120,77 +121,77 @@ material-kit-react
120121 │ └── material-kit-react.scss
121122 ├── components
122123 │ ├── Badge
123- │ │ └── Badge.jsx
124+ │ │ └── Badge.js
124125 │ ├── Card
125- │ │ ├── Card.jsx
126- │ │ ├── CardBody.jsx
127- │ │ ├── CardFooter.jsx
128- │ │ └── CardHeader.jsx
126+ │ │ ├── Card.js
127+ │ │ ├── CardBody.js
128+ │ │ ├── CardFooter.js
129+ │ │ └── CardHeader.js
129130 │ ├── Clearfix
130- │ │ └── Clearfix.jsx
131+ │ │ └── Clearfix.js
131132 │ ├── CustomButtons
132- │ │ └── Button.jsx
133+ │ │ └── Button.js
133134 │ ├── CustomDropdown
134- │ │ └── CustomDropdown.jsx
135+ │ │ └── CustomDropdown.js
135136 │ ├── CustomInput
136- │ │ └── CustomInput.jsx
137+ │ │ └── CustomInput.js
137138 │ ├── CustomLinearProgress
138- │ │ └── CustomLinearProgress.jsx
139+ │ │ └── CustomLinearProgress.js
139140 │ ├── CustomTabs
140- │ │ └── CustomTabs.jsx
141+ │ │ └── CustomTabs.js
141142 │ ├── Footer
142- │ │ └── Footer.jsx
143+ │ │ └── Footer.js
143144 │ ├── Grid
144- │ │ ├── GridContainer.jsx
145- │ │ └── GridItem.jsx
145+ │ │ ├── GridContainer.js
146+ │ │ └── GridItem.js
146147 │ ├── Header
147- │ │ ├── Header.jsx
148- │ │ └── HeaderLinks.jsx
148+ │ │ ├── Header.js
149+ │ │ └── HeaderLinks.js
149150 │ ├── InfoArea
150- │ │ └── InfoArea.jsx
151+ │ │ └── InfoArea.js
151152 │ ├── NavPills
152- │ │ └── NavPills.jsx
153+ │ │ └── NavPills.js
153154 │ ├── Pagination
154- │ │ └── Pagination.jsx
155+ │ │ └── Pagination.js
155156 │ ├── Parallax
156- │ │ └── Parallax.jsx
157+ │ │ └── Parallax.js
157158 │ ├── Snackbar
158- │ │ └── SnackbarContent.jsx
159+ │ │ └── SnackbarContent.js
159160 │ └── Typography
160- │ ├── Danger.jsx
161- │ ├── Info.jsx
162- │ ├── Muted.jsx
163- │ ├── Primary.jsx
164- │ ├── Quote.jsx
165- │ ├── Small.jsx
166- │ ├── Success.jsx
167- │ └── Warning.jsx
161+ │ ├── Danger.js
162+ │ ├── Info.js
163+ │ ├── Muted.js
164+ │ ├── Primary.js
165+ │ ├── Quote.js
166+ │ ├── Small.js
167+ │ ├── Success.js
168+ │ └── Warning.js
168169 └── views
169170 ├── Components
170- │ ├── Components.jsx
171+ │ ├── Components.js
171172 │ └── Sections
172- │ ├── SectionBasics.jsx
173- │ ├── SectionCarousel.jsx
174- │ ├── SectionCompletedExamples.jsx
175- │ ├── SectionDownload.jsx
176- │ ├── SectionExamples.jsx
177- │ ├── SectionJavascript.jsx
178- │ ├── SectionLogin.jsx
179- │ ├── SectionNavbars.jsx
180- │ ├── SectionNotifications.jsx
181- │ ├── SectionPills.jsx
182- │ ├── SectionTabs.jsx
183- │ └── SectionTypography.jsx
173+ │ ├── SectionBasics.js
174+ │ ├── SectionCarousel.js
175+ │ ├── SectionCompletedExamples.js
176+ │ ├── SectionDownload.js
177+ │ ├── SectionExamples.js
178+ │ ├── SectionJavascript.js
179+ │ ├── SectionLogin.js
180+ │ ├── SectionNavbars.js
181+ │ ├── SectionNotifications.js
182+ │ ├── SectionPills.js
183+ │ ├── SectionTabs.js
184+ │ └── SectionTypography.js
184185 ├── LandingPage
185- │ ├── LandingPage.jsx
186+ │ ├── LandingPage.js
186187 │ └── Sections
187- │ ├── ProductSection.jsx
188- │ ├── TeamSection.jsx
189- │ └── WorkSection.jsx
188+ │ ├── ProductSection.js
189+ │ ├── TeamSection.js
190+ │ └── WorkSection.js
190191 ├── LoginPage
191- │ └── LoginPage.jsx
192+ │ └── LoginPage.js
192193 └── ProfilePage
193- └── ProfilePage.jsx
194+ └── ProfilePage.js
194195```
195196
196197
0 commit comments