리액트파이(ReactPy), 사이트 

 

파이썬에서 심플한 웹사이트나 홈페이지를 가장 간편하게 구현하는 방법일까요?

흥미로운 기술이라 계속 지켜봐야겠습니다.

 

https://reactpy.dev/docs/index.html#

 

ReactPy

This documentation is still under construction 🚧. We welcome your feedback! ReactPy is a library for building user interfaces in Python without Javascript. ReactPy interfaces are made from componen...

reactpy.dev

 

[예제 코드] main.py

from reactpy import component, html, run

@component
def App():
    return html.h1("Hello, world!")

run(App)

 

반응형

'ReactPy' 카테고리의 다른 글

리액트파이(ReactPy), 사이트  (0) 2023.06.09

+ Recent posts