I have a relatively straightforward issue of trying to add inline scripting to a React component. What I have so far:
\'use strict\'; import \'../../styles/
You can also use react helmet
import React from "react"; import {Helmet} from "react-helmet"; class Application extends React.Component { render () { return ( My Title ... ); } };
Helmet takes plain HTML tags and outputs plain HTML tags. It's dead simple, and React beginner friendly.