diff --git a/search-panel-demo/content.ts b/search-panel-demo/content.ts new file mode 100644 index 0000000..adc5b7f --- /dev/null +++ b/search-panel-demo/content.ts @@ -0,0 +1,14 @@ +// Search Panel Split Focus Demo +// This file demonstrates the (Left)/(Right) indicator feature + +function originalFunction() { + // This is the ORIGINAL implementation + return "ORIGINAL value from the LEFT side"; +} + +function helperFunction() { + // This helper is shared between both sides + return 42; +} + +const ORIGINAL_CONSTANT = "This only appears on the LEFT";