-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from BouyguesTelecom/remove/components-part2
Remove components part2
- Loading branch information
Showing
39 changed files
with
23 additions
and
1,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
import * as React from 'react' | ||
import * as ReactDOM from 'react-dom' | ||
import { Router } from './router' | ||
import { HashRouter } from 'react-router-dom' | ||
import * as React from "react"; | ||
import * as ReactDOM from "react-dom/client"; | ||
import { HashRouter } from "react-router-dom"; | ||
import { TrilogyProviderStyled } from "@trilogy-ds/react/context/providerStyled"; | ||
import { Router } from "./router"; | ||
|
||
ReactDOM.render( | ||
const rootElement = document.getElementById("root"); | ||
const root = ReactDOM.createRoot(rootElement); | ||
|
||
root.render( | ||
<React.StrictMode> | ||
<TrilogyProviderStyled> | ||
<HashRouter> | ||
<Router></Router> | ||
<Router /> | ||
</HashRouter> | ||
</TrilogyProviderStyled> | ||
</React.StrictMode>, | ||
document.getElementById('root'), | ||
) | ||
</React.StrictMode> | ||
); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 0 additions & 47 deletions
47
packages/react/components/disclaimer/Disclaimer.native.tsx
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
packages/react/components/disclaimer/Disclaimer.stories.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.