Skip to content

Commit

Permalink
Feat :: Provider #1
Browse files Browse the repository at this point in the history
  • Loading branch information
kyumin7487 committed Jul 17, 2024
1 parent 0806ea5 commit 2a53ef1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions baobao/src/components/Common/Provider/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React, { Fragment } from 'react'
import GlobalStyle from "src/styles/global";
import PageTemplate from "src/components/Common/PageTemplate";
import Router from "src/components/Router/router";

const Provider = () => {
return (
<Fragment>
<GlobalStyle />
<PageTemplate>
<Router />
</PageTemplate>
</Fragment>
)
}

export default Provider;

0 comments on commit 2a53ef1

Please sign in to comment.