Is it possible to write and deploy Angular2 app within existing page as a small component? The idea is that most of the page is generated by PHP but main content would like to replace by Angular app for better Ux and Ui.
For example:
<!doctype html>
<html lang="en">
<head>
....
</head>
<body>
<some_header>....</some_header>
<app-angular>
</app-angular>
<some_footer>....</some_footer>
</body>
</html>
What are the limitations?