The documentation for the Material Dashboard Pro is hosted at website.
Within the download you'll find the following directories and files:
material-dashboard-pro-react
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── gulpfile.js
├── jsconfig.json
├── package.json
├── documentation
│ ├── assets
│ │ ├── css
│ │ ├── img
│ │ │ └── faces
│ │ └── js
│ └── tutorial-components.html
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── assets
│ ├── github
│ │ └── material-dashboard-pro-react.gif
│ ├── img
│ │ ├── faces
│ │ ├── flags
│ │ ├── logo-white.svg
│ │ └── logo.svg
│ ├── jss
│ │ ├── material-dashboard-pro-react
│ │ │ ├── components
│ │ │ ├── layouts
│ │ │ └── views
│ │ └── material-dashboard-pro-react.js
│ └── scss
│ ├── material-dashboard-pro-react
│ │ ├── mixins
│ │ └── plugins
│ └── material-dashboard-pro-react.scss
├── components
│ ├── Accordion
│ │ └── Accordion.js
│ ├── Badge
│ │ └── Badge.js
│ ├── Card
│ │ ├── Card.js
│ │ ├── CardAvatar.js
│ │ ├── CardBody.js
│ │ ├── CardFooter.js
│ │ ├── CardHeader.js
│ │ ├── CardIcon.js
│ │ └── CardText.js
│ ├── Clearfix
│ │ └── Clearfix.js
│ ├── CustomButtons
│ │ └── Button.js
│ ├── CustomDropdown
│ │ └── CustomDropdown.js
│ ├── CustomInput
│ │ └── CustomInput.js
│ ├── CustomLinearProgress
│ │ └── CustomLinearProgress.js
│ ├── CustomTabs
│ │ └── CustomTabs.js
│ ├── CustomUpload
│ │ ├── ImageUpload.js
│ │ └── PictureUpload.js
│ ├── FixedPlugin
│ │ └── FixedPlugin.js
│ ├── Footer
│ │ └── Footer.js
│ ├── Grid
│ │ ├── GridContainer.js
│ │ └── GridItem.js
│ ├── Heading
│ │ └── Heading.js
│ ├── InfoArea
│ │ └── InfoArea.js
│ ├── Instruction
│ │ └── Instruction.js
│ ├── NavPills
│ │ └── NavPills.js
│ ├── Navbars
│ │ ├── AdminNavbar.js
│ │ ├── AdminNavbarLinks.js
│ │ └── AuthNavbar.js
│ ├── Pagination
│ │ └── Pagination.js
│ ├── Sidebar
│ │ └── Sidebar.js
│ ├── Snackbar
│ │ ├── Snackbar.js
│ │ └── SnackbarContent.js
│ ├── Table
│ │ └── Table.js
│ ├── Tasks
│ │ └── Tasks.js
│ ├── Timeline
│ │ └── Timeline.js
│ ├── Typography
│ │ ├── Danger.js
│ │ ├── Info.js
│ │ ├── Muted.js
│ │ ├── Primary.js
│ │ ├── Quote.js
│ │ ├── Success.js
│ │ └── Warning.js
│ └── Wizard
│ └── Wizard.js
├── index.js
├── layouts
│ ├── Admin.js
│ ├── Auth.js
│ └── RTL.js
├── routes.js
├── variables
│ ├── charts.js
│ └── general.js
└── views
├── Calendar
│ └── Calendar.js
├── Charts
│ └── Charts.js
├── Components
│ ├── Buttons.js
│ ├── GridSystem.js
│ ├── Icons.js
│ ├── Notifications.js
│ ├── Panels.js
│ ├── SweetAlert.js
│ └── Typography.js
├── Dashboard
│ └── Dashboard.js
├── Forms
│ ├── ExtendedForms.js
│ ├── RegularForms.js
│ ├── ValidationForms.js
│ ├── Wizard.js
│ └── WizardSteps
│ ├── Step1.js
│ ├── Step2.js
│ └── Step3.js
├── Maps
│ ├── FullScreenMap.js
│ ├── GoogleMaps.js
│ └── VectorMap.js
├── Pages
│ ├── ErrorPage.js
│ ├── LockScreenPage.js
│ ├── LoginPage.js
│ ├── PricingPage.js
│ ├── RTLSupport.js
│ ├── RegisterPage.js
│ ├── Timeline.js
│ └── UserProfile.js
├── Tables
│ ├── ExtendedTables.js
│ ├── ReactTables.js
│ └── RegularTables.js
└── Widgets
└── Widgets.js