First of all, the dual of a planar graph is only defined with respect to a planar embedding; for some planar graphs, every embedding gives the same dual graph (as a graph), but this is not always the case.
Given a planar embedding of a planar graph, a face is a connected component of the plane with the edges of the graph removed. In your case, after removing the edges, the plane remains connected, and so there is a single face. The dual of your graph thus consists of a single vertex with three self-loops.
The same dual graph would be obtained if instead of your graph we take a matching, a star with three edges, or a path of three edges. This seems to contradict the well-known result that the dual of the dual is the original graph. However, this result only holds for connected graphs (although both the star and the path are connected, the corresponding planar embeddings are different). For more on this issue, see this question.