GitHub deletes popular llama.cpp fork without explanation
github.com4 pointsby akawry2 comments
import './MyComponent.css';
const MyComponent = () => (
<div className="my-class">I'm a component!</div>
);
and in MyComponent.css, .my-class {
color: red;
}
To handle proper scoping, you could use something like css-modules or wrap each component in a top-level <div> with a component-specific class name. For example: const MyComponent = () => (
<div className="MyComponent">
<div className="content">
I'm a component
</div>
</div>
);
and then .MyComponent.content {
color: red;
}
If you use a preprocessor like sass, you can just nest your entire component-specific styles like this: .MyComponent
.content
color: red
.footer
color: blue
CPU performance is much better than mainline llama, as well as having more quantization types available