If you are reading this my name is FARES tinakiche I started learning web development about 1 year ago this how I built my full stack blog project to see the full project with the code
click here
Project description
This blog is highly costumable with code and mostly mobile friendly
in this project i used the mern stack
- MongoDB
- Express
- React
- NodeJS
Here are some photos from the project
file structure
Index.js
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import { ContextProvider } from "./context/Context";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<ContextProvider>
<App />
</ContextProvider>
</React.StrictMode>
);
Top comments (0)