0.1.0 • Published 3 years ago

@enterpriseui/ui-core-react v0.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

#Getting stared with EUI-Core and React

There are some issue when it comes to webcomponents and React, but we tried our best to make it happen.

##Install Install it from npm:

npm i -S @enterpriseui/ui-core @enterpriseui/ui-core-react

or

yarn add @enterpriseui/ui-core @enterpriseui/ui-core-react

You just have to install a couple of packages and import them

##Setup Just simply import it in your index.tsx (or the page where you want to use it)

Basic setup:

import '@enterpriseui/ui-core/dist/uicore/uicore.css';
import { EuiInput } from '@enterpriseui/ui-core-react';

If you need more control about which our components should be added in your site as a custom element:

import '@enterpriseui/ui-core/dist/uicore/uicore.css';
import { EuiInput } from '@enterpriseui/ui-core-react/dist/components';
import { EuiInput as EuiBaseInput } from '@enterpriseui/ui-core/dist/custom-elements';

And use the component as you would do it with any other React component

function Example() {
  const [value, setValue] = useState('');

  return (
    <div>
      <EuiInput
        onEuiChange={(ev) => {
          setValue(ev.detail as string);
        }}
        value={value}
        placeholder={'Value'}
      />
      Value of the input: {value}
    </div>
  );
}

ReactDOM.render(<Example />, document.getElementById('root'));
0.1.1-next.917

3 years ago

0.1.1-next.918

3 years ago

0.1.1-next.924

3 years ago

0.1.1-next.923

3 years ago

0.1.1-next.921

3 years ago

0.1.1-next.916

3 years ago

0.1.1-next.913

3 years ago

0.1.1-next.912

3 years ago

0.1.1-next.905

3 years ago

0.1.1-next.903

3 years ago

0.1.1-next.902

3 years ago

0.1.1-next.896

3 years ago

0.1.1-next.900

3 years ago

0.1.1-next.895

3 years ago

0.1.1-next.893

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago

0.0.2-next.883

3 years ago

0.0.2-next.882

3 years ago

0.0.2-next.873

3 years ago

0.0.2-next.872

3 years ago

0.0.2-next.871

3 years ago

0.0.2-next.877

3 years ago

0.0.2-next.870

3 years ago

0.0.2-next.868

3 years ago

0.0.2-next.866

3 years ago

0.0.2-next.865

3 years ago

0.0.2-next.863

3 years ago