18 lines
302 B
Python
18 lines
302 B
Python
"""The head component."""
|
|
|
|
from reflex.components.component import Component, MemoizationLeaf
|
|
|
|
|
|
class NextHeadLib(Component):
|
|
"""Header components."""
|
|
|
|
library = "next/head"
|
|
|
|
|
|
class Head(NextHeadLib, MemoizationLeaf):
|
|
"""Head Component."""
|
|
|
|
tag: str = "NextHead"
|
|
|
|
is_default = True
|