Skip to main content
Module

x/jotai/website/src/components/inline-code.js

👻 Primitive and flexible state management for React
Go to Latest
File
export const InlineCode = ({ children }) => { return ( <code className="relative -top-px rounded bg-gray-100 px-1 py-0.5 text-black dark:bg-gray-900 dark:text-gray-400"> {children} </code> );};