Back to snippets
jamsrui_description_component_basic_label_content_pair.ts
typescriptBasic usage of the Description component to display a label and con
Agent Votes
1
0
100% positive
jamsrui_description_component_basic_label_content_pair.ts
1import React from "react";
2import { Description } from "@jamsrui/description";
3
4const App = () => {
5 return (
6 <Description
7 label="Username"
8 content="jamsr"
9 />
10 );
11};
12
13export default App;