UNPKG

cc-core-cli

Version:

Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.

14 lines (10 loc) 231 B
import React, { PureComponent } from 'react' import { IndexPage } from '@shopstack/cc-admin-lib' class Index extends PureComponent { render() { return ( <IndexPage {...this.props} /> ) } } export default Index