File size: 305 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
//@flow
const strings = {
title: "Login to your Account",
buttonText: "Login",
emailLabel: "Email Address",
emailPlaceholder: "Enter email",
passwordLabel: "Password",
passwordPlaceholder: "Password",
};
export default strings;
export type stringTypes = { [$Keys<typeof strings>]: string };
|