Browse Source

(refactor)ModalRoot: move from /routes to /components

renovate/lint-staged-8.x
Jonathan Zobro 7 years ago
parent
commit
81f3160a4d
  1. 0
      app/components/ModalRoot/ModalRoot.js
  2. 4
      app/components/ModalRoot/ModalRoot.scss
  3. 0
      app/components/ModalRoot/SuccessfulSendCoins.js
  4. 4
      app/components/ModalRoot/SuccessfulSendCoins.scss
  5. 0
      app/components/ModalRoot/index.js
  6. 2
      app/routes/app/components/App.js
  7. 3
      app/routes/app/components/components/ModalRoot/SuccessfulSendCoins/index.js

0
app/routes/app/components/components/ModalRoot/ModalRoot.js → app/components/ModalRoot/ModalRoot.js

4
app/routes/app/components/components/ModalRoot/ModalRoot.scss → app/components/ModalRoot/ModalRoot.scss

@ -1,4 +1,4 @@
@import '../../../../../variables.scss';
@import '../../variables.scss';
.container {
position: absolute;
@ -39,4 +39,4 @@
width: 32px;
height: 32px;
}
}
}

0
app/routes/app/components/components/ModalRoot/SuccessfulSendCoins/SuccessfulSendCoins.js → app/components/ModalRoot/SuccessfulSendCoins.js

4
app/routes/app/components/components/ModalRoot/SuccessfulSendCoins/SuccessfulSendCoins.scss → app/components/ModalRoot/SuccessfulSendCoins.scss

@ -1,4 +1,4 @@
@import '../../../../../../variables.scss';
@import '../../variables.scss';
.container {
position: relative;
@ -34,4 +34,4 @@
width: 15%;
margin: 0 auto;
}
}
}

0
app/routes/app/components/components/ModalRoot/index.js → app/components/ModalRoot/index.js

2
app/routes/app/components/App.js

@ -2,7 +2,7 @@ import React, { Component } from 'react'
import PropTypes from 'prop-types'
import LoadingBolt from 'components/LoadingBolt'
import Form from 'components/Form'
import ModalRoot from './components/ModalRoot'
import ModalRoot from 'components/ModalRoot'
import Nav from './components/Nav'
import styles from './App.scss'

3
app/routes/app/components/components/ModalRoot/SuccessfulSendCoins/index.js

@ -1,3 +0,0 @@
import SuccessfulSendCoins from './SuccessfulSendCoins'
export default SuccessfulSendCoins
Loading…
Cancel
Save