Grabbed dndbeyond's source code
``` ~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js ```
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
import { visuallyHidden } from "@mui/utils";
|
||||
import React from "react";
|
||||
import { connect, DispatchProp } from "react-redux";
|
||||
|
||||
import {
|
||||
CharacterTheme,
|
||||
rulesEngineSelectors,
|
||||
} from "@dndbeyond/character-rules-engine/es";
|
||||
|
||||
import SubsectionTablet from "../../../components/SubsectionTablet";
|
||||
import TabletBox from "../../../components/TabletBox";
|
||||
import { SheetAppState } from "../../../typings";
|
||||
import Features from "../../Features";
|
||||
|
||||
interface Props extends DispatchProp {
|
||||
theme: CharacterTheme;
|
||||
}
|
||||
class FeaturesTablet extends React.PureComponent<Props> {
|
||||
render() {
|
||||
const { theme } = this.props;
|
||||
|
||||
return (
|
||||
<SubsectionTablet className="ct-features-tablet">
|
||||
<TabletBox
|
||||
header="Features & Traits"
|
||||
className="ct-actions-tablet"
|
||||
theme={theme}
|
||||
>
|
||||
<section>
|
||||
<h2 style={visuallyHidden}>Features and Traits</h2>
|
||||
<Features />
|
||||
</section>
|
||||
</TabletBox>
|
||||
</SubsectionTablet>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function mapStateToProps(state: SheetAppState) {
|
||||
return {
|
||||
theme: rulesEngineSelectors.getCharacterTheme(state),
|
||||
};
|
||||
}
|
||||
|
||||
export default connect(mapStateToProps)(FeaturesTablet);
|
||||
@@ -0,0 +1,4 @@
|
||||
import FeaturesTablet from "./FeaturesTablet";
|
||||
|
||||
export default FeaturesTablet;
|
||||
export { FeaturesTablet };
|
||||
Reference in New Issue
Block a user