Skip to content

Instantly share code, notes, and snippets.

@harshq
Last active January 24, 2025 07:54
Show Gist options
  • Save harshq/d693a461be3dd60b804b2d2fde6f366e to your computer and use it in GitHub Desktop.
Save harshq/d693a461be3dd60b804b2d2fde6f366e to your computer and use it in GitHub Desktop.
"use client"
import React, { use } from 'react'
import ExampleSection from '../shared/ExampleSection';
import { ThemeContext } from './themeContext';
const UseApiClientContext: React.FC = () => {
const theme = use(ThemeContext)
return (
<ExampleSection>
<code>System theme is: {theme}</code>
</ExampleSection>
);
}
export default UseApiClientContext;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment