Skip to content

Commit f2f36a7

Browse files
authored
chore(fixtures): Use proper name for AuthLayout component (#11399)
1 parent 1f5c396 commit f2f36a7

File tree

1 file changed

+2
-2
lines changed
  • __fixtures__/test-project-rsc-kitchen-sink/web/src/layouts/AuthLayout

1 file changed

+2
-2
lines changed

__fixtures__/test-project-rsc-kitchen-sink/web/src/layouts/AuthLayout/AuthLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type AuthLayoutProps = {
77
children?: React.ReactNode
88
}
99

10-
const NavigationLayout = ({ children }: AuthLayoutProps) => {
10+
const AuthLayout = ({ children }: AuthLayoutProps) => {
1111
return (
1212
<div className="auth-layout">
1313
<nav>
@@ -44,4 +44,4 @@ const NavigationLayout = ({ children }: AuthLayoutProps) => {
4444
)
4545
}
4646

47-
export default NavigationLayout
47+
export default AuthLayout

0 commit comments

Comments
 (0)