Skip to content

Commit 63ad80b

Browse files
chore(release): 1.2.2 [skip ci]
## [1.2.2](v1.2.1...v1.2.2) (2023-03-19) ### Bug Fixes * use ReactNode ([48f393d](48f393d))
1 parent 8fc869b commit 63ad80b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.2.2](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.2.1...v1.2.2) (2023-03-19)
2+
3+
4+
### Bug Fixes
5+
6+
* use ReactNode ([48f393d](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/48f393db02b57ced1f08fabd1d92c565a80b7c3e))
7+
18
## [1.2.1](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.2.0...v1.2.1) (2023-03-19)
29

310

lib/cjs/components/ElevatedAppBar.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { AppBarProps } from '@mui/material';
33
export interface ElevatedAppBarProps {
44
props: AppBarProps;
5-
children: React.ReactElement;
5+
children: React.ReactNode;
66
}
77
declare const ElevatedAppBar: React.FC<ElevatedAppBarProps>;
88
export default ElevatedAppBar;

lib/esm/components/ElevatedAppBar.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { AppBarProps } from '@mui/material';
33
export interface ElevatedAppBarProps {
44
props: AppBarProps;
5-
children: React.ReactElement;
5+
children: React.ReactNode;
66
}
77
declare const ElevatedAppBar: React.FC<ElevatedAppBarProps>;
88
export default ElevatedAppBar;

0 commit comments

Comments
 (0)