1.0.6 • Published 8 months ago

vogzcorp-jsxerror v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

Vogzcorp-jsxerror

npm i vogzcorp-jsxerror
npm i vogzcorp-jsxerror@latest

This package is open-source.

He's created for help your client to use the dashboard with a db system for, for exemple, update something in the web-site. You can impose constraints in the code for signal him with an error in interface users if he have update somting whoch doesn't correspond to constraints given.

How to use it

import { TypeErrorJSX } from "vogzcorp-jsxerror"
import { useState } from "react";

let [isCounter, setCounter] = useState(0);

export default const f = () => {
  
  return (
    <>
      <div onClick={() => setCounter(newValue => newValue = 1)}>Click to make an error!</div>
      <div onClick={() => setCounter(newValue => newValue = 0)}>Click to remove the error!</div>
      {isCounter === 1 ? <TypeErrorJSX message={"This is error message."} ERROR_ID={"ID_OF_THE_ERROR"}/> : null}
    </>
  )

};
1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.3

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago