Explain the process of setting up a basic web application using Flask.
from flask import render_template
@app.route('/')
def hello():
return render_template('index.html')
from flask import render_template
@app.route('/')
def hello():
return render_template('index.html')