Reactreact anchor link

For general installation and configuration look at the react-core-components package.

Use componentuse-component anchor link

// App.tsx
import { useState } from "react";
import { DBTextarea } from "@db-ux/react-core-components";

const App = () => {
	const [textarea, setTextarea] = useState("default textarea");
	return (
		<DBTextarea
			label="Textarea Controlled"
			message="Message"
			value={textarea}
			onChange={(event) => {
				setTextarea(event.target.value);
			}}
		/>
	);
};

export default App;