From 00572b6d4e457fbf2f57b7b3212eececf7b52cb6 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Wed, 5 Aug 2026 07:36:29 +0300 Subject: [PATCH] docs: add Spanish README --- README.es-ES.md | 89 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 README.es-ES.md diff --git a/README.es-ES.md b/README.es-ES.md new file mode 100644 index 0000000..b8afad2 --- /dev/null +++ b/README.es-ES.md @@ -0,0 +1,89 @@ + + +# React UI5 + +[![NPM](https://nodei.co/npm/react-ui5.png)](https://nodei.co/npm/react-ui5/) + +[build-badge]: https://travis-ci.org/alessh/react-ui5.svg?branch=master +[build]: https://travis-ci.org/alessh/react-ui5 + +[npm-badge]: https://img.shields.io/npm/v/react-ui5.png?style=flat-square +[npm]: https://www.npmjs.org/package/react-ui5 + +[coveralls-badge]: https://img.shields.io/coveralls/user/repo/master.png?style=flat-square +[coveralls]: https://coveralls.io/github/user/repo + +[![Travis][build-badge]][build] +[![npm package][npm-badge]][npm] +[![Coveralls][coveralls-badge]][coveralls] + +Una implementación basada en React del framework SAP OpenUI5 (https://openui5.hana.ondemand.com). + +### Instalación +```javascript +npm install react-ui5 --save +``` +### Uso +```javascript +import sap from 'react-ui5' +``` +### index.html +```html + + + + + + + React-UI5 App + + +
+ + +``` +### App.js +```javascript +import React, { Component } from 'react'; + +import sap from 'react-ui5' + +class App extends Component { + render() { + return ( + + + To Page 2 + + + + ); + } +} + +export default App; +``` +### Demo +![Sample](sample.gif) + +### Componentes Soportados + +| componente | métodos | progreso | +| ------- | ---------------- | ------ | +| Shell | | 90% | +| Page | title | 80% | +| Button | | 50% | +| TabContainer | | 40% | +| SplitContainer | | 30% | +| TabSplit | | 20% | + +### SplitContainer +```html + +``` +![Master Detail Page](page3.png) +### TabContainer +```html + +``` +![Table Container](page4.png)