3.1.5 • Published 5 years ago

@impress/babel-plugin-ssr v3.1.5

Weekly downloads
29
License
MIT
Repository
github
Last release
5 years ago

@impress/react

@impress/react logo

Modular Data-View binding mechanism for React

npm npm type definitions npm bundle size build status code coverage

Install

npm i @impress/react

Example

import { store, useProvide } from "@impress/react";

class User {
  @store name = "John";
}

const UserNameEditor = React.memo(() => {
  const user = useProvide(User);
  return (
    <input
      onChange={(e: any) => user.name = e.target.value}
      value={user.name}
    />
  )
});

Example on codesandbox

3.1.5

5 years ago

3.1.4

5 years ago

3.1.3

5 years ago

3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.0

5 years ago

2.7.2

5 years ago

2.7.0

5 years ago

2.7.1

5 years ago

2.6.1

5 years ago

2.6.0

5 years ago

2.5.0

5 years ago

2.4.0

5 years ago

2.3.0

5 years ago

2.2.0

5 years ago

2.1.0

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.0

5 years ago