Skip to content

Commit

Permalink
feat: add stub implementations for ScreenFooter for web (software-m…
Browse files Browse the repository at this point in the history
…ansion#2369)

## Description

Adding stub implmentation for web.

## Changes

See files. No more description needed.


## Checklist

- [-] Ensured that CI passes
  • Loading branch information
kkafar authored and ja1ns committed Oct 9, 2024
1 parent c0721ac commit d7235a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ScreenContentWrapper.web.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { View } from 'react-native';

export const NativeScreenContentWrapper = View;
export const ScreenContentWrapper = View;

const ScreenContentWrapper = View;
export default ScreenContentWrapper;
6 changes: 6 additions & 0 deletions src/components/ScreenFooter.web.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { View } from 'react-native';

export const NativeScreenFooter = View;

const ScreenFooter = View;
export default ScreenFooter;

0 comments on commit d7235a8

Please sign in to comment.