rsnext/packages/next/lib/views-layout.tsx
JJ Kasper 4475de58ff
Update client router for tests (#36822)
## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `yarn lint`


Co-authored-by: Tim Neutkens <6324199+timneutkens@users.noreply.github.com>
2022-05-12 20:52:59 +00:00

17 lines
301 B
TypeScript

import React from 'react'
export type LayoutProps = {
children: any
}
export default function ViewsLayout({ children }: LayoutProps) {
return (
<html>
<head>
{/* TODO: Remove <title> */}
<title>Test</title>
</head>
<body>{children}</body>
</html>
)
}