ethanneff/example

View on GitHub
src/apps/Playground/Games/SlotMachine/index.web.tsx

Summary

Maintainability
A
50 mins
Test Coverage
import React from 'react';
import { Screen } from '../../../../components';
import { useNavigation } from '../../../../conversions';

export const SlotMachine = () => {
  const { goBack } = useNavigation();

  return (
    <Screen
      onLeftPress={goBack}
      title="Slot Machine"
    />
  );
};