UNPKG

cc-core-cli

Version:

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

14 lines (10 loc) 227 B
import React, { PureComponent } from 'react' import { Error404 } from '@shopstack/cc-admin-lib' class Error404Page extends PureComponent { render() { return ( <Error404 /> ) } } export default Error404Page