ReactJS Semantic UI Statistics Views Last Updated : 04 Mar, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks. In this article we will know how to use Statistics Views in ReactJS Semantic UI. Statistics Views are used to show the statistics of the page or the element. Properties: Statistic Group: We can make a group of statistics using this property. Syntax: <Statistic /> Creating React Application And Installing Module: Step 1: Create a React application using the following command. npx create-react-app foldername Step 2: After creating your project folder i.e. foldername, move to it using the following command. cd foldername Step 3: Install semantic UI in your given directory. npm install semantic-ui-react semantic-ui-css Project Structure: It will look like the following. Step to Run Application: Run the application from the root directory of the project, using the following command. npm start Example 1: This is the basic example that shows how to use statistics views by using ReactJS Semantic UI Statistics Views. App.js import React from 'react' import { Statistic } from 'semantic-ui-react' const styleLink = document.createElement("link"); styleLink.rel = "stylesheet"; styleLink.href = "https://cdn.jsdelivr.net/npm/semantic-ui/dist/semantic.min.css"; document.head.appendChild(styleLink); const btt = () => ( <Statistic> <Statistic.Value>ReactJS</Statistic.Value> <Statistic.Label>Semantic UI</Statistic.Label> </Statistic> ) export default btt Output: Example 2: In this example, we have used floated variation in the statistics by using ReactJS Semantic UI Statistics Views. App.js import React from 'react' import { Statistic } from 'semantic-ui-react' const styleLink = document.createElement("link"); styleLink.rel = "stylesheet"; styleLink.href = "https://cdn.jsdelivr.net/npm/semantic-ui/dist/semantic.min.css"; document.head.appendChild(styleLink); const btt = () => ( <Statistic floated='right'> <Statistic.Value>ReactJS</Statistic.Value> <Statistic.Label>Semantic UI</Statistic.Label> </Statistic> ) export default btt Output: Reference: https://react.semantic-ui.com/views/statistic Comment More infoAdvertise with us Next Article Semantic-UI Statistics Content T taran910 Follow Improve Article Tags : Web Technologies ReactJS Semantic-UI Similar Reads Semantic-UI Statistics Content Value Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses predefined CSS and jQuery to incorporate different frameworks. Statistics is used to emphasize the value of a label. It is normally used to d 2 min read Semantic-UI Statistics Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for users to design web pages. One of them is â 2 min read ReactJS Semantic UI Item Views Semantic UI is a modern framework used in developing seamless designs for the website. It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks. In this article, we will know how to use Item Views in ReactJS Se 2 min read ReactJS Semantic UI Feed Views Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks. In this article, we will know how to use Feed Views in ReactJS Se 2 min read ReactJS Semantic UI Card Views Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks.In this article we will see how to use card views in ReactJS Seman 2 min read Semantic-UI Statistics Variations Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for user interface design. One of them is âstat 5 min read Like