Skip to content

Remove chonky header for single modules #50672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 0 additions & 108 deletions packages/rn-tester/js/components/RNTTestDetails.js

This file was deleted.

7 changes: 0 additions & 7 deletions packages/rn-tester/js/components/RNTesterModuleContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import type {

import {type RNTesterTheme, RNTesterThemeContext} from './RNTesterTheme';
import RNTPressableRow from './RNTPressableRow';
import RNTTestDetails from './RNTTestDetails';
import * as React from 'react';
import {Platform, ScrollView, StyleSheet, Text, View} from 'react-native';

Expand Down Expand Up @@ -80,12 +79,6 @@ export default function RNTesterModuleContainer(props: Props): React.Node {

return singleModule != null ? (
<>
<RNTTestDetails
title={singleModule.title}
description={singleModule.description}
expect={singleModule.expect}
theme={theme}
/>
{singleModule.scrollable === true ? (
<ScrollView style={styles.examplesContainer} testID="example-container">
<singleModule.render />
Expand Down
Loading