# mykademy-learner-student-dashboard

> test student_dashboard

[![NPM](https://img.shields.io/npm/v/mykademy-learner-student-dashboard.svg)](https://www.npmjs.com/package/mykademy-learner-student-dashboard) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save mykademy-learner-student-dashboard
```

## Usage

```jsx
import React, { Component } from 'react'

import MyComponent from 'mykademy-learner-student-dashboard'
import 'mykademy-learner-student-dashboard/dist/index.css'
import 'mykademy-learner-student-dashboard/dist/scss/student-dashboard/main.css';

class Example extends Component {
  render() {
    return <MyComponent />
  }
}
```


Package linking is a two-step process:

Create a global symlink for a dependency with npm link. A symlink, short for symbolic link, is a shortcut that points to another directory or file on your system. 
Tell the application to use the global symlink with npm link mykademy-learner-student-dashboard. 

# Step 1.
> git clone -b library_integration https://github.com/OliveMedia/VLE-MyKademy-Student-Dashboard.git // library_*
# Step 2.
> cd ~/project_root 
> npm install
> npm link  
> npm run build-css
> npm start
# Step 3.
> cd ~/project_root/example 
> npm link mykademy-learner-student-dashboard  
> npm start
> npm adduser
> npm publish

