App.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import React from 'react'; import { ArabicKeyboard as ArabicKeyboardWC } from 'arabic-virtual-keyboard' import {createComponent} from '@lit/react'; const ArabicKeyboard = createComponent({ tagName: 'arabic-keyboard', elementClass: ArabicKeyboardWC, react: React, }); function App() { return ( <div> <ArabicKeyboard showEnglishValue="true" showShiftedValue="true"></ArabicKeyboard> </div> ) } export default App |