Move `client/web/src/auth/Steps` to `wildcard/components` folder
Created by: 5h1rU
Problem statement
The stepper component is defined in the auth folder. But it's a general component that should live in the Wildcard component library.
Success criteria
- The
Steps
folder should be moved toclient/wildcard/src/components/Steps
- Components and hooks defined in the
Steps
folder should be re-exported inclient/wildcard/src/components/index.ts
- Components consumers should use
yarn workspace
imports. e.g.,import { useSteps } from '@sourcegraph/wildcard'