# extendify/3.1.2/src/Launch/components/BusinessInformation/AcceptTerms.jsx

Extendify, version 3.1.2. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.2/code/src/Launch/components/BusinessInformation/AcceptTerms.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.1.2/raw/src/Launch/components/BusinessInformation/AcceptTerms.jsx
- Modified: 2025-12-17T14:09:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.2/code/src/Launch/components/BusinessInformation/AcceptTerms.jsx#L10-L20`.

```jsx
import { useAIConsentStore } from '@shared/state/ai-consent';

export const AcceptTerms = () => {
	const { consentTerms } = useAIConsentStore();

	return (
		<div className="flex flex-col">
			<p
				className="m-0 mt-6 p-0 text-sm text-gray-700"
				dangerouslySetInnerHTML={{ __html: consentTerms }}
			/>
		</div>
	);
};

```
