Website for showcasing all features of Tesseract Web.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

52 line
1015 B

  1. import { NextPage } from 'next';
  2. const NumberPage: NextPage = () => {
  3. return (
  4. <main className="my-16 md:my-32">
  5. <section>
  6. <div className="container mx-auto px-4">
  7. <h1>
  8. Number
  9. </h1>
  10. <div>
  11. <section>
  12. <h2>
  13. Spinner
  14. </h2>
  15. <div>
  16. TODO
  17. <input type="number" />
  18. </div>
  19. </section>
  20. <section>
  21. <h2>
  22. Slider
  23. </h2>
  24. <div>
  25. TODO
  26. <input type="range" />
  27. </div>
  28. </section>
  29. <section>
  30. <h2>
  31. Matrix
  32. </h2>
  33. <div>
  34. TODO
  35. <input type="range" />
  36. <input type="range" />
  37. </div>
  38. </section>
  39. </div>
  40. </div>
  41. </section>
  42. </main>
  43. )
  44. }
  45. export default NumberPage;