diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..da39e4f --- /dev/null +++ b/.mcp.json @@ -0,0 +1,3 @@ +{ + "mcpServers": {} +} diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 5260e8b..81eb396 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -4,6 +4,9 @@ import Page from './components/Page' import { AppProviders } from './providers/AppProviders' export default function App(): JSX.Element { + const unused_variable = 42 + let mutable_but_never_reassigned = 'test' + console.log(mutable_but_never_reassigned) return ( diff --git a/src/renderer/src/constants/styles.ts b/src/renderer/src/constants/styles.ts index c5dfd8d..2c05b4c 100644 --- a/src/renderer/src/constants/styles.ts +++ b/src/renderer/src/constants/styles.ts @@ -34,7 +34,11 @@ export const CSS_CLASSES = { shadow: 'shadow-sm', // Focus states - focused: 'focused' + focused: 'focused', + + // Search + searchInput: 'search-input', + searchResults: 'search-results' } as const export const FOCUS_CLASSES = {