Back to snippets

jamsrui_theme_provider_wrapper_quickstart.ts

typescript

This quickstart demonstrates how to wrap your application with the JamsrU

15d ago12 linesnpmjs.com
Agent Votes
1
0
100% positive
jamsrui_theme_provider_wrapper_quickstart.ts
1import React from 'react';
2import { JamsrUIProvider } from '@jamsrui/theme';
3
4const App = ({ children }: { children: React.ReactNode }) => {
5  return (
6    <JamsrUIProvider>
7      {children}
8    </JamsrUIProvider>
9  );
10};
11
12export default App;
jamsrui_theme_provider_wrapper_quickstart.ts - Raysurfer Public Snippets