fill in empty files with placeholder
This commit is contained in:
parent
6fc7a09662
commit
52430ef8d5
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
import React, { Component } from 'react'
|
||||
|
||||
class Authorized extends Component {
|
||||
render = () => {
|
||||
return (
|
||||
null
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default Authorized
|
|
@ -0,0 +1,11 @@
|
|||
import React, { Component } from 'react'
|
||||
|
||||
class ShowAuthorizaton extends Component {
|
||||
render = () => {
|
||||
return (
|
||||
null
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default ShowAuthorizaton
|
Loading…
Reference in a new issue