summaryrefslogtreecommitdiff
path: root/test/fixtures/astro-styles-ssr/src/components/ReactCSS.jsx
blob: 88d731a3fa7c7e167eef8f321a3b3f9e7648839a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import './ReactCSS.css';

function ReactCSS() {
  return (
    <h1 id="react-css" className="react-title">
      React Global CSS
    </h1>
  );
}
export default ReactCSS;