About the Lino React front end¶
The “modern” React front end is an alternative to the “classical” ExtJS front end. Here are two screenshots of a same Lino site, one with ExtJS and one with React:
How to try it:
Install some Lino application as explained in Install your Lino developer environment.
Run
pip install lino-react
.In your
settings.py
file, set thedefault_ui
attribute tolino_react.react
:class Site(Site): ... default_ui = 'lino_react.react' ...
Start the development server:
$ python manage.py runserver