Fixed full components
This commit is contained in:
20
src/components/StepsForCandidate/StepsForCandidate.jsx
Normal file
20
src/components/StepsForCandidate/StepsForCandidate.jsx
Normal file
@ -0,0 +1,20 @@
|
||||
import React from "react";
|
||||
|
||||
import "./stepForCandidate.scss";
|
||||
|
||||
export const StepsForCandidate = ({ step }) => {
|
||||
return (
|
||||
<div className="step">
|
||||
<div className="step__start">
|
||||
<span>2</span>
|
||||
<p>шага для твоего входа в команду </p>
|
||||
</div>
|
||||
<div className="step__info">
|
||||
<p>{step}</p>
|
||||
<span>из 2</span>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default StepsForCandidate;
|
Reference in New Issue
Block a user