mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 22:35:51 +00:00
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
import * as React from 'react';
|
|
|
|
/**
|
|
* Internal-only component. Shows experiment enrollment status for internal
|
|
* users. Stubbed — returns null in non-internal builds.
|
|
*/
|
|
export function ExperimentEnrollmentNotice(): React.ReactNode {
|
|
return null;
|
|
}
|