Samadhi 108 rar

const practiceSchema = new mongoose.Schema({ title: String, description: String, videoUrl: String, });

const Practice = mongoose.model('Practice', practiceSchema);

const handlePlay = () => { setPlaying(true); };

function PracticePlayer() { const [practice, setPractice] = useState({}); const [playing, setPlaying] = useState(false);

export default PracticePlayer;

const express = require('express'); const app = express(); const mongoose = require('mongoose');