ReactJS Semantic UI Textarea Addons Last Updated : 28 Jun, 2021 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 Textarea Addons in ReactJS Semantic UI. Textarea Addons is used to make a field in which the user will input some text. Usage Min height: Minimum height of the text area.Rows: We can make a textarea with a minimum number of rows. Syntax: <Textarea /> 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 Textarea addons by using ReactJS Semantic UI Textarea Addons. App.js import React from 'react' import { TextArea, Form } 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 = () => ( <div> <br/> <Form> <TextArea placeholder='GeeksforGeeks' /> </Form> </div> ) export default btt Output: Example 2: In this example, we have changed the size of the row in the textarea by using ReactJS Semantic UI Textarea Addons. App.js import React from 'react' import { TextArea, Form } 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 = () => ( <div> <br/> <Form> <TextArea rows={1} placeholder='GeeksforGeeks' /> </Form> </div> ) export default btt Output: Reference: https://react.semantic-ui.com/addons/text-area Comment More infoAdvertise with us Next Article ReactJS Semantic UI Portal Addons T taran910 Follow Improve Article Tags : Web Technologies ReactJS Semantic-UI Similar Reads ReactJS Semantic UI Ref Addons 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. In this article, we will learn how to use Ref Addons in ReactJS Semantic UI. R 2 min read ReactJS Semantic UI TransitionablePortal Addons 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 and JQuery languages to incorporate into different frameworks.In this article, we will find out how to use TransitionableP 3 min read ReactJS Semantic UI Portal Addons 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 and JQuery languages to incorporate them into different frameworks. In this article, we will find out how to use Portal Ad 2 min read ReactJS Semantic UI Confirm Addons 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 Confirm Addons in ReactJS 2 min read ReactJS Semantic UI Table Collections 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 table collections in Reac 3 min read Semantic-UI Form Text Area 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 provides us with a very easy way to style the web app instead of using CS 2 min read Like