-
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 #16 from imkarimkarim/bugFix
hopfuly will fix back button issue in windows
- Loading branch information
Showing
25 changed files
with
229 additions
and
187 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
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,18 +1,23 @@ | ||
import React from 'react'; | ||
import React from "react"; | ||
import Button from "@material-ui/core/Button"; | ||
import CircularProgress from '@material-ui/core/CircularProgress'; | ||
import './Loading.css'; | ||
import CircularProgress from "@material-ui/core/CircularProgress"; | ||
import "./Loading.css"; | ||
|
||
export default function Loading() { | ||
return( | ||
export default function Loading({ history }) { | ||
return ( | ||
<div className="loadingLoading"> | ||
<CircularProgress /> | ||
<p className="hint"> | ||
درحال دریافت اطلاعات... | ||
</p> | ||
<p className="hint">درحال دریافت اطلاعات...</p> | ||
<Button variant="outlined"> | ||
<span className="button-title" onClick={() => {window.history.back();}}>انصراف</span> | ||
<span | ||
className="button-title" | ||
onClick={() => { | ||
history.goBack(); | ||
}} | ||
> | ||
انصراف | ||
</span> | ||
</Button> | ||
</div> | ||
) | ||
); | ||
} |
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
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
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
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
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
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
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
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
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
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
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 React from 'react' | ||
import NewCustomer from '../../Components/Name/NewCustomer.jsx'; | ||
import NewProductOwner from '../../Components/Name/NewProductOwner.jsx'; | ||
import React from "react"; | ||
import NewCustomer from "../../Components/Name/NewCustomer.jsx"; | ||
import NewProductOwner from "../../Components/Name/NewProductOwner.jsx"; | ||
import "./NewName.css"; | ||
import Nav from "../../Components/Nav.jsx"; | ||
|
||
const NewName = (props) => { | ||
const NewName = ({ history }) => { | ||
return ( | ||
<div className="NewName goje-container"> | ||
<Nav history={history} /> | ||
<NewCustomer /> | ||
<div className="gap"></div> | ||
<NewProductOwner /> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default NewName; |
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
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
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
Oops, something went wrong.