Skip to content

Instantly share code, notes, and snippets.

@Moizsohail
Last active March 3, 2022 05:36
Show Gist options
  • Save Moizsohail/14b8dd9cb28fca8985cdafebeabeffcd to your computer and use it in GitHub Desktop.
Save Moizsohail/14b8dd9cb28fca8985cdafebeabeffcd to your computer and use it in GitHub Desktop.
Medium: Chrome Extension With React And NPM Modules: Part 1
import React from "react";
import "./App.css";
import "bootstrap/dist/js/bootstrap.min";
import "bootstrap/dist/css/bootstrap.min.css";
import Home from "./components/Home";
function App() {
return (
<div className="App">
<Home />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment