mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
Add localization support (#333)
* Add updated i18n config and en locale
This commit is contained in:
@@ -7,3 +7,4 @@ export * from './get-header-color';
|
||||
export * from './parse-search-params';
|
||||
export * from './format-duration-string';
|
||||
export * from './rgb-to-rgba';
|
||||
export * from './sentence-case';
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
export const sentenceCase = (string: string) => {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
};
|
||||
Reference in New Issue
Block a user