11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import { useTheme } from "../theme"
|
|
import { background } from "./components"
|
|
|
|
export default function sharedScreen() {
|
|
const theme = useTheme()
|
|
|
|
return {
|
|
background: background(theme.highest),
|
|
}
|
|
}
|