Package Exports
- ark-react-log
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ark-react-log) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ark-react-log
This a simple react library to make console log
Install
npm install --save ark-react-log
Browser usage:
<script src="https://cdn.jsdelivr.net/npm/ark-js-log@latest/ark-log.js"></script>
Usage
import { ArkLog } from 'ark-react-log'
class Example extends Component {
logInfo(){
ArkLog('Lord Jesus', 'Almost SAVED is Totally Lost').error();
}
render() {
return <div> Component content here </div>
}
}