React ❤️ Mini Program
GojiJS enables running React code on multi Mini Program platforms.
- Fully supports React
You can use the latest version of React in GojiJS. Features including class / functional components, hooks, portal can work well on GojiJS.
- Cross platforms ability
For now, GojiJS supports these platforms:
- Baidu
- Alipay
- Toutiao
- Kuai App ( TBD )
- Web ( TBD )
In GojiJS you can write React code like this:
import React, { useState } from 'react';
import { View, Text, Button, render } from '@goji/core';
import styles from './index.css';
const App = () => {
const [count, setCount] = useState(0);
return (
<View className={styles.wrapped}>
<Text>{count}</Text>
<Button onClick={() => setCount(count + 1)}>+</Button>
</View>
);
};
render(App);
For more details, see GojiJS official documentation website.