import react from
'react'
import Steps from
'rsuite/Steps'
;
import
'rsuite/dist/rsuite.min.css'
;
export
default
function
App() {
return
(
<div className=
"App"
>
<h1 style={{ color:
'green'
}}>
GeeksforGeeks
</h1>
<h3>React Suite Steps Description</h3>
<h6 style={{ color:
'red'
}}>
How to save a File
in
Word
using React Suite steps
</h6>
<br></br>
<Steps current={0} >
<Steps.Item title=
"File Menu"
description=
"File Menu is present to the left of the screen.Click on that"
/>
<Steps.Item title=
"Save Option"
description=
"Go to the Save or Save As button provided."
/>
<Steps.Item title=
"Location"
description=
"Select the location where you want the file to be saved."
/>
<Steps.Item title=
"Give Name"
description=
"Provide a name to the file or use the default one."
/>
<Steps.Item title=
"Save"
description=
"Click on the Save button"
/>
</Steps>
</div>
);
}