tutorial-units.js 880 B

12345678910111213141516171819202122232425262728293031
  1. module.exports = {
  2. tutorial: {
  3. path_prefix: "/docs/tutorial/",
  4. units: {
  5. introduction: {
  6. no: 1,
  7. label: "Welcome",
  8. },
  9. "getting-started": {
  10. no: 2,
  11. label: "Create and deploy your first Refine app",
  12. },
  13. "understanding-dataprovider": {
  14. no: 3,
  15. label: "Understanding the Data Provider",
  16. },
  17. "understanding-resources": {
  18. no: 4,
  19. label: "Understanding the Resources",
  20. },
  21. "adding-crud-pages": {
  22. no: 5,
  23. label: "Adding CRUD pages",
  24. },
  25. "understanding-authprovider": {
  26. no: 6,
  27. label: "Understanding the Auth provider",
  28. },
  29. },
  30. },
  31. };