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