{% extends '@Web/layout.html.twig' %}
{% block title %}
Orders · {{ siteName }}
{% endblock %}
{% block stylesheets %}
<link href="{{ asset('build/stylesheets/common_components.css') }}" rel="stylesheet" />
<link href="{{ asset('build/stylesheets/orders.css') }}" rel="stylesheet" />
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="{{ asset('build/client-bundle.js', 'webpack') }}"></script>
{% endblock %}
{% block content %}
{{ redux_store('appStore', initialState) }}
{{ react_component('App', {'rendering': 'client_side'}) }}
{% endblock %}