mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { createTss } from "tss-react"
|
|
|
|
const useContext = () => {
|
|
// return anything here that will be accessible in tss.create()
|
|
// we don't need anything right now
|
|
return {}
|
|
}
|
|
|
|
export const { tss } = createTss({ useContext })
|
|
|
|
export const useStyles = tss.create({})
|