My web application is created in angular. Can I check whether web application is accessed from browser or Teams custom apps.
As I know this features is available for app which are created in react. example :- import { useTeams } from "msteams-react-base-component"; const [{ inTeams, theme, context }] = useTeams();
Above inTeams return boolean, which tells whether app is accessed from browser or custom app.
So I get this in angular as well?