webpack/webpack-cli

View on GitHub
packages/generators/init-template/react/src/App.tsx.tpl

Summary

Maintainability
Test Coverage
import React from "react";
import webpackLogo from "./assets/webpack.png";

function App() {
    return (
        <div className="container">
            <h1 className="heading">Welcome to your Typescript React App!</h1>
            <img src={webpackLogo} alt="webpack logo" />
        </div>
    );
}

export default App;