Skip to content

Instantly share code, notes, and snippets.

@Karan-Palan
Created March 15, 2024 12:56
Show Gist options
  • Save Karan-Palan/24e8299f63b76bd3e52fe4aa6ef24614 to your computer and use it in GitHub Desktop.
Save Karan-Palan/24e8299f63b76bd3e52fe4aa6ef24614 to your computer and use it in GitHub Desktop.
Integration of Project Builder in the main app for Music-Blocks example code
import React from 'react';
import BuilderWrapper from './BuilderWrapper';
const App: React.FC = () => {
return (
<div>
{/* Existing MusicBlocks Code */}
<BuilderWrapper />
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment