diff --git a/BlazorFluentUI/Components/Layout/NavMenu.razor b/BlazorFluentUI/Components/Layout/NavMenu.razor
index a312a45..5adc22f 100644
--- a/BlazorFluentUI/Components/Layout/NavMenu.razor
+++ b/BlazorFluentUI/Components/Layout/NavMenu.razor
@@ -36,6 +36,7 @@
Search
Slider
Switch
+ TextArea
diff --git a/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextArea.razor b/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextArea.razor
new file mode 100644
index 0000000..c9da9d8
--- /dev/null
+++ b/BlazorFluentUI/Components/Pages/FormInputs/FormInputTextArea.razor
@@ -0,0 +1,60 @@
+@page "/forminputtextarea"
+
+@rendermode RenderMode.InteractiveServer
+
+TextArea
+
+
+ The FluentTextArea
wraps a web component of a text area
element.
+
+
+Default Example
+
+ Without Label
+
+ With Label
+
+
+
+Rows and Cols
+
+ 12 Rows
+
+ 12Cols
+
+
+
+Display and Resize
+
+ Full Width
+
+ Placeholder
+
+ Resize - Horizontal
+
+ Resize - Vertical
+
+ Resize - Both
+
+
+
+Focus
+
+
+ Focus Async
+
+ Focus Async
+
+
+
+@code {
+ string? eval1, eval2;
+
+ string? rcvalue1 = "1\r\n2\r\n3\r\n4\r\n5\r\n6\r\n7\r\n8\r\n9\r\n10\r\n11\r\n12";
+ string? rcvalue2;
+
+ string? phvalue;
+
+ FluentTextArea focusTest;
+ string? fcvalue;
+}