Who has used the ant design mobile of react?

for example, I have multiple interfaces, how to write ah, what the catalog is like, ask for answers

Mar.03,2021

App.js    
router.js 
|----routes 
    |----user (/)
    |----xxxx
|----components  

you can create a folder for each page in the src directory, in which you can put component code and do routing in app.js


you can see that the different branches of the small demo, I wrote are all ant mobile style. address


you can refer to ant design pro


antd/mobile, both of which are in the form of component frames, including commonly used React controls such as button, table, tree, etc. You also refer to antd's package in package.json tightly through antd cli init's project,. So, just like you use bootstrap, what is provided to you is only the basic elements, and you have to use the component heap for what the page looks like in the end. As for how to use each component, it is very complete to look in the api document.
as for directories, React is currently used in conjunction with Redux, so take a look at these two articles:

three specifications of Redux + React application architecture

Menu