How to enumerate two equations that go after a curly brace? How to make the enumeration use digits and letters, so two equations have number 1.a and 1.b?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
A \Rightarrow
\left\{\begin{array}{ll}
B_1, \text{ or}\\
B_2
\end{array}
\right.
\end{equation}
\end{document}

