Way to print out the HTML on Dash Python

Hi guys, thank for reading.
I have a short python code:

import dash
import dash_html_components as html

app = dash.Dash()
app.layout = html.Div(className=‘hello’)


Is there any way to print out or get the HTML render of the layout like:

< div className=“hello” >

Thank you agian.