11 lines
167 B
TypeScript
11 lines
167 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledQuake3 = styled.div`
|
||
|
canvas {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default StyledQuake3;
|