1.0.4 • Published 2 years ago

@flish/cra-template v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Flish create-react-app Template

To simplify creating flish extension, we created a template for you. This implementation uses create-react-app. It's a good starting point for your flish extension. It adds the following features:

  • Chakra UI - Flish uses Chakra UI for its UI components.

  • Flish Theme - Flish has a custom theme for Chakra UI which matches Flish's design system.

  • Flish types - Flish has a set of custom APIs to interact with the system. This is a type definition for the APIs.

  • React Router - React Router configured to work with Flish.

Usage

To use this template, pass it as an argument of the create-react-app command.

# With npm
npx create-react-app new-extension --template "@flish"
# With yarn
yarn create react-app new-extension --template "@flish"