This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo sh -c "echo 2 > /sys/devices/platform/asus-nb-wmi/throttle_thermal_policy" | |
# 2 - Silent | |
# 0 - Balance | |
# 1 - Turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import Compose from "./Compose.js"; | |
import Context from "./Context.js"; | |
export default function App() { | |
const [foo] = React.useState(1); | |
const [bar] = React.useState(2); | |
return ( | |
<Compose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foo from '@/modules/Foo'; // This will import `src/modules/Foo.js` | |
import * as Modules from '@/modules'; // This will import `src/modules/index.js` |