learnix / src /app /materials /page.js
shashidharak99's picture
Upload files
7d51e81 verified
"use client";
import Footer from "../components/Footer";
import { Navbar } from "../components/Navbar";
import StudyMaterials from "./StudyMaterials";
export default function materials() {
return (
<div >
<Navbar />
<StudyMaterials/>
</div>
);
}