This commit is contained in:
Paolo Miguel de Leon
2022-11-14 23:12:55 +08:00
parent 90b9083540
commit baa9637520
2 changed files with 14 additions and 11 deletions

View File

@@ -49,17 +49,16 @@ export const MyVcsTab: React.FC<HomeScreenTabProps> = (props) => {
onPress={controller.VIEW_VC}
/>
))}
<Column elevation={2} margin="10 2 0 2">
<Button
type="clear"
disabled={controller.isRefreshingVcs}
title={t('addVcButton', {
vcLabel: controller.vcLabel.singular,
})}
onPress={controller.ADD_VC}
/>
</Column>
</Column>
<Column elevation={2} margin="10 2 0 2">
<Button
type="clear"
disabled={controller.isRefreshingVcs}
title={t('addVcButton', {
vcLabel: controller.vcLabel.singular,
})}
onPress={controller.ADD_VC}
/>
</Column>
</React.Fragment>
)}

4
types/global/index.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module '*.md' {
const value: string;
export default value;
}