1.0.0-alpha • Published 3 years ago

@dmn-arc-core-components/tools_admin-placeholder v1.0.0-alpha

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Feature: Admin Placeholder

What does this do?

When used in a Fusion Project, this Core Component can be used to render a placeholder element, often useful for ads.

How do I use it?

  import AdminPlaceholder from '@dmn-arc-core-components/tools_admin-placeholder'

  <AdminPlaceholder {..yourProps}></AdminPlaceholder>

Take a look in the src file to see a suggested implementation, in index.mdx

How can I view what's in there quickly?

Run npm i && npm run docz:dev after cloning to see what is within.

Testing & Linting

We are using Jest and XO for testing and linting.

We are using Husky to run a pre-push hook, preventing un-linted or code that fails tests from making it into the repo.

To test: npm test

To lint: npm run lint - This will also fix any simple linter errors automatically.

To push without testing or linting: git push --no-verify - This can often be helpful if you just need to push a branch for demonstration purposes or for help.